云存储 负责管理 Telegram 迷你应用程序中云存储的💠组件。 检查支持要检查当前 Telegram 迷你应用程序版本是否支持云存储,需要使用 isSupported 方法: Variable : - import { cloudStorage } from '@telegram-apps/sdk';
4 ~- o U* z3 ^% _+ |0 h- Z& c
6 U1 t. M( G. g# e7 C( h. K9 \; b- cloudStorage.isSupported(); // boolean
复制代码
5 \1 E4 q5 i: M: R! ]Functions : - import { isCloudStorageSupported } from '@telegram-apps/sdk';
6 c5 G9 {( `5 ?. r. ?
! a- c0 G4 {/ _, z+ {" w/ M8 ?$ r4 S- isCloudStorageSupported(); // boolean
复制代码 设置项目要设置键值,请使用 setItem 方法。 Variable : - await cloudStorage.setItem('a', 'a-value');
复制代码Functions : - import { setCloudStorageItem } from '@telegram-apps/sdk';
# {: g6 `0 W6 f - 2 x* P' A: J' z3 L/ _
- await setCloudStorageItem('a', 'a-value');
复制代码 获取钥匙要获取所有现有密钥的列表,请使用 getKeys 方法。 Variable : - const keys = await cloudStorage.getKeys(); // ['a', 'b', 'c']
复制代码Functions : - import { getCloudStorageKeys } from '@telegram-apps/sdk';1 b5 v, e; N. o$ ]. S
0 E( S2 _& P+ t& J8 @1 c# D- const keys = await getCloudStorageKeys(); // ['a', 'b', 'c']
复制代码
: G# r+ F% K$ B3 U& u; N9 p要获取特定键或多个键的值,请使用 getItem 方法。 Variable : - const nonExistent = await cloudStorage.getItem('non-existent');& K9 J* O5 g9 m4 F
- // The result is an empty string: ''
+ ^7 ~; i0 I* h, x - 2 x$ z! D% ]7 M+ y4 O" Y" A% p
- const existent = await cloudStorage.getItem('a');9 h% C2 O; ?. O5 N8 g
- // The result is the value of the 'a' key. Example: 'a-value'! w. I% \" k* Y: X @% R' m6 X
- ! g. _" o5 W0 |. I/ ]
- const values = await cloudStorage.getItem(['a', 'b', 'non-existent']);/ s. O; [- d" F0 J/ n
- // The result is a record of the keys 'a', 'b', and 'non-existent'.
/ v- K0 @- Z0 y( D - // Example:
/ Y! E) ]4 [, F- h - // { ) v. q5 a6 b& {+ ^/ I9 @: j
- // a: 'a-value', 1 L. W/ C; l) w8 Y3 d
- // b: 'b-value',
4 ?( I$ S, x# f* y1 `- l; y7 M - // 'non-existent': '',
* X3 m) M; k9 X' I! E$ o6 M/ b2 \6 S - // }
复制代码Functions : - import { getCloudStorageItem } from '@telegram-apps/sdk';
, h( S( c ^$ T. O! U8 P
2 `% f2 N+ R0 W: M- const nonExistent = await getCloudStorageItem('non-existent');
8 t1 q. P6 D0 K* Z& c- T" V% g2 ~ - // The result is an empty string: ''
8 r$ ` b) Q" C) ?4 R2 a& X( B
5 B0 g( ^: i1 e- const existent = await getCloudStorageItem('a');+ r+ u( H' v8 J5 P f
- // The result is the value of the 'a' key. Example: 'a-value'
* a+ m2 {; ~" b% {, G. [3 Y* @
7 I, M$ [: b9 b: M- const values = await getCloudStorageItem(['a', 'b', 'non-existent']);' D4 d7 i! D9 q+ q5 [
- // The result is a record of the keys 'a', 'b', and 'non-existent'.
4 @4 I) `9 T6 \( ?1 ~) M5 q0 q - // Example:
* A0 g" @3 h7 ^$ j- D3 y - // {
- d9 m) b; L6 w' S/ G - // a: 'a-value', ) O! [% R# o" a, r6 f, J, W+ Z% d K
- // b: 'b-value', ' G/ ~0 b3 L& \7 ^" d+ _
- // 'non-existent': '', 8 E0 h3 d& M6 t) @) N$ y" t
- // }
复制代码 删除项目要删除一个键或键列表,请使用 deleteItem 方法。 Variable : - await cloudStorage.deleteItem('a');
" D0 N! K: [) L2 F2 n - await cloudStorage.deleteItem(['a', 'b', 'c']);
复制代码Functions : - import { deleteCloudStorageItem } from '@telegram-apps/sdk';
; d3 }5 A- \4 M9 B U1 c2 O8 b b - 6 X5 F* i) n! Q- W
- await deleteCloudStorageItem('a');9 `& n1 F1 o8 v
- await deleteCloudStorageItem(['a', 'b', 'c']);
复制代码 ( K+ a. U! f$ L, { I0 g
, p- p( F" B/ o) k# V2 R
|