云存储 负责管理 Telegram 迷你应用程序中云存储的💠组件。 检查支持要检查当前 Telegram 迷你应用程序版本是否支持云存储,需要使用 isSupported 方法: Variable : - import { cloudStorage } from '@telegram-apps/sdk';
1 L. l4 V l* B d5 E+ `3 l2 H2 X+ q
- m' L" J8 N, r; G- cloudStorage.isSupported(); // boolean
复制代码 4 R# m, g& O, ~$ t2 ]! N' d
Functions : - import { isCloudStorageSupported } from '@telegram-apps/sdk';" ?: w$ _& ?0 F9 y- [% r
% i8 X" s; \4 ~# P, C) S. E( U% X- isCloudStorageSupported(); // boolean
复制代码 设置项目要设置键值,请使用 setItem 方法。 Variable : - await cloudStorage.setItem('a', 'a-value');
复制代码Functions : - import { setCloudStorageItem } from '@telegram-apps/sdk';+ H: o5 V' Q: ^' L7 w; S
/ J1 T% M" y8 n% Y- await setCloudStorageItem('a', 'a-value');
复制代码 获取钥匙要获取所有现有密钥的列表,请使用 getKeys 方法。 Variable : - const keys = await cloudStorage.getKeys(); // ['a', 'b', 'c']
复制代码Functions : - import { getCloudStorageKeys } from '@telegram-apps/sdk';, u, b# e0 g- w/ J, J% w! L6 _
" z! f2 O+ F T! s) X+ q! P- const keys = await getCloudStorageKeys(); // ['a', 'b', 'c']
复制代码
2 l) R7 u% K0 Y( B. M9 I i6 k: \要获取特定键或多个键的值,请使用 getItem 方法。 Variable : - const nonExistent = await cloudStorage.getItem('non-existent');, ?5 t+ w1 i* _& T8 w% m3 _
- // The result is an empty string: ''
: M0 e1 b D1 L- W, f8 W3 O
) W/ I1 {5 ^1 I3 r) g- const existent = await cloudStorage.getItem('a');
9 ]: G o7 T: \ - // The result is the value of the 'a' key. Example: 'a-value'
6 B4 c& O2 F: p3 S& p - / h8 J. e$ j; t; G
- const values = await cloudStorage.getItem(['a', 'b', 'non-existent']);
( R; A! H; P( F* q- R: g/ Y - // The result is a record of the keys 'a', 'b', and 'non-existent'.
2 i M' c# w, @" n7 z5 a - // Example:
+ q, j. Q+ {) x1 i! _ - // {
+ _8 l |$ W- ]( v( A! a6 B3 o - // a: 'a-value',
( Z4 d8 ^5 b" ]4 L" r9 e% @+ A - // b: 'b-value', * y+ w t% s/ G' ]5 O3 R% n' S6 G
- // 'non-existent': '', , y2 k3 g% b* R$ M# y5 S
- // }
复制代码Functions : - import { getCloudStorageItem } from '@telegram-apps/sdk';; Q. s. h A1 T* P! I5 X
/ t; F' O. \! ]8 [3 `4 }: K- const nonExistent = await getCloudStorageItem('non-existent');9 Y2 Z0 k4 w: R4 N
- // The result is an empty string: ''
Q+ q$ l* B1 x y. T6 A3 a; A - 9 i# D3 n$ U2 C, l6 G
- const existent = await getCloudStorageItem('a');
. N n# a6 m( ]; P. G - // The result is the value of the 'a' key. Example: 'a-value'
f5 G% Y- A; J
$ c2 o& s8 u9 ^8 ]) D: \- const values = await getCloudStorageItem(['a', 'b', 'non-existent']);( ~% H& R9 Y- y/ N
- // The result is a record of the keys 'a', 'b', and 'non-existent'.
! T. D4 t& A5 x - // Example:; a2 q" N$ I' ?
- // { 2 j! t" W4 O% f' a$ A9 b* g
- // a: 'a-value',
: J. q3 Q! l/ p0 X: c! c4 u - // b: 'b-value',
6 i; F" N: P( O, J o4 I - // 'non-existent': '', ; Z/ X* r- z2 H
- // }
复制代码 删除项目要删除一个键或键列表,请使用 deleteItem 方法。 Variable : - await cloudStorage.deleteItem('a');& O+ |; v5 J& ?5 Q( z' X
- await cloudStorage.deleteItem(['a', 'b', 'c']);
复制代码Functions : - import { deleteCloudStorageItem } from '@telegram-apps/sdk';6 A) V6 Z6 o5 Q3 L+ D9 g
- $ N9 x# Y8 S" ?2 b
- await deleteCloudStorageItem('a');
+ ]& y; \! H$ K' H) _: n - await deleteCloudStorageItem(['a', 'b', 'c']);
复制代码
7 B$ ^3 u- ?* i, `/ V+ e7 z. d w+ H2 W5 ?% p/ N3 J
|