storage.md 4.9 KB
Newer Older
D
DCloud_LXH 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
## key-value本地数据存储

app、小程序、web,均提供了方便的key-value模式的本地数据存储,通过键值对的方式存取数据。

uni-app的Storage在不同端的实现不同:
- H5端为localStorage,浏览器限制5M大小,是缓存概念,可能会被清理
- App端为原生storage,无大小限制,不是缓存,是持久化的
- 各个小程序端为其自带的storage api,数据存储生命周期跟小程序本身一致,即除用户主动删除或超过一定时间被自动清理,否则数据都一直可用。
	* 微信小程序单个 key 允许存储的最大数据长度为 1MB,所有数据存储上限为 10MB。
	* 支付宝小程序单条数据转换成字符串后,字符串长度最大200*1024。同一个支付宝用户,同一个小程序缓存总上限为10MB。
	* 百度小程序策略[详见](https://smartprogram.baidu.com/docs/develop/api/storage/save_process/)
	* 抖音小程序策略[详见](https://developer.open-douyin.com/docs/resource/zh-CN/mini-app/develop/api/data-caching/tt-get-storage)

**注意**
- `uni-``uni_``dcloud-``dcloud_`为前缀的key,为系统保留关键前缀。如`uni_deviceId``uni_id_token`,请开发者为key命名时避开这些前缀。
- 非App平台清空Storage会导致uni.getSystemInfo获取到的deviceId改变

## uni.setStorage(options) @setstorage

<!-- UTSAPIJSON.setStorage.description -->

D
DCloud_LXH 已提交
22 23
<!-- UTSAPIJSON.setStorage.compatibility -->

D
DCloud_LXH 已提交
24 25 26 27 28 29 30 31 32 33 34 35
<!-- UTSAPIJSON.setStorage.param -->

<!-- UTSAPIJSON.setStorage.returnValue -->

<!-- UTSAPIJSON.setStorage.example -->

<!-- UTSAPIJSON.setStorage.tutorial -->

## uni.setStorageSync(key, data) @setstoragesync

<!-- UTSAPIJSON.setStorageSync.description -->

D
DCloud_LXH 已提交
36 37
<!-- UTSAPIJSON.setStorageSync.compatibility -->

D
DCloud_LXH 已提交
38 39
<!-- UTSAPIJSON.setStorageSync.param -->

40 41 42 43 44 45 46
:::warning
参数 `data` 为对象字面量时,需要通过 `as UTSJSONObject` 明确类型,例如:
```js
uni.setStorageSync('obj', {"a": 1} as UTSJSONObject)
```
:::

D
DCloud_LXH 已提交
47 48 49 50 51 52 53 54 55 56
<!-- UTSAPIJSON.setStorageSync.returnValue -->

<!-- UTSAPIJSON.setStorageSync.example -->

<!-- UTSAPIJSON.setStorageSync.tutorial -->

## uni.getStorage(options) @getstorage

<!-- UTSAPIJSON.getStorage.description -->

D
DCloud_LXH 已提交
57 58
<!-- UTSAPIJSON.getStorage.compatibility -->

D
DCloud_LXH 已提交
59 60 61 62 63 64 65 66
<!-- UTSAPIJSON.getStorage.param -->

<!-- UTSAPIJSON.getStorage.returnValue -->

<!-- UTSAPIJSON.getStorage.example -->

<!-- UTSAPIJSON.getStorage.tutorial -->

67 68
> 注意:获取一个不存在的 key 会触发 fail 回调,返回错误信息为 "getStorage:fail data not found" 的错误。

D
DCloud_LXH 已提交
69 70 71 72
## uni.getStorageSync(key) @getstoragesync

<!-- UTSAPIJSON.getStorageSync.description -->

D
DCloud_LXH 已提交
73 74
<!-- UTSAPIJSON.getStorageSync.compatibility -->

D
DCloud_LXH 已提交
75 76 77 78 79 80 81 82
<!-- UTSAPIJSON.getStorageSync.param -->

<!-- UTSAPIJSON.getStorageSync.returnValue -->

<!-- UTSAPIJSON.getStorageSync.example -->

<!-- UTSAPIJSON.getStorageSync.tutorial -->

83 84
> 注意:同步方法获取一个不存在的 key 会返回空字符串,而不是 null

D
DCloud_LXH 已提交
85 86 87 88
## uni.getStorageInfo(options) @getstorageinfo

<!-- UTSAPIJSON.getStorageInfo.description -->

D
DCloud_LXH 已提交
89 90
<!-- UTSAPIJSON.getStorageInfo.compatibility -->

D
DCloud_LXH 已提交
91 92 93 94 95 96 97 98 99 100 101 102
<!-- UTSAPIJSON.getStorageInfo.param -->

<!-- UTSAPIJSON.getStorageInfo.returnValue -->

<!-- UTSAPIJSON.getStorageInfo.example -->

<!-- UTSAPIJSON.getStorageInfo.tutorial -->

## uni.getStorageInfoSync() @getstorageinfosync

<!-- UTSAPIJSON.getStorageInfoSync.description -->

D
DCloud_LXH 已提交
103 104
<!-- UTSAPIJSON.getStorageInfoSync.compatibility -->

D
DCloud_LXH 已提交
105 106 107 108 109 110 111 112 113 114 115 116
<!-- UTSAPIJSON.getStorageInfoSync.param -->

<!-- UTSAPIJSON.getStorageInfoSync.returnValue -->

<!-- UTSAPIJSON.getStorageInfoSync.example -->

<!-- UTSAPIJSON.getStorageInfoSync.tutorial -->

## uni.removeStorage(options) @removestorage

<!-- UTSAPIJSON.removeStorage.description -->

D
DCloud_LXH 已提交
117 118
<!-- UTSAPIJSON.removeStorage.compatibility -->

D
DCloud_LXH 已提交
119 120 121 122 123 124 125 126 127 128 129 130
<!-- UTSAPIJSON.removeStorage.param -->

<!-- UTSAPIJSON.removeStorage.returnValue -->

<!-- UTSAPIJSON.removeStorage.example -->

<!-- UTSAPIJSON.removeStorage.tutorial -->

## uni.removeStorageSync(key) @removestoragesync

<!-- UTSAPIJSON.removeStorageSync.description -->

D
DCloud_LXH 已提交
131 132
<!-- UTSAPIJSON.removeStorageSync.compatibility -->

D
DCloud_LXH 已提交
133 134 135 136 137 138 139 140 141 142 143 144
<!-- UTSAPIJSON.removeStorageSync.param -->

<!-- UTSAPIJSON.removeStorageSync.returnValue -->

<!-- UTSAPIJSON.removeStorageSync.example -->

<!-- UTSAPIJSON.removeStorageSync.tutorial -->

## uni.clearStorage(option?) @clearstorage

<!-- UTSAPIJSON.clearStorage.description -->

D
DCloud_LXH 已提交
145 146
<!-- UTSAPIJSON.clearStorage.compatibility -->

D
DCloud_LXH 已提交
147 148 149 150 151 152 153 154 155 156 157 158
<!-- UTSAPIJSON.clearStorage.param -->

<!-- UTSAPIJSON.clearStorage.returnValue -->

<!-- UTSAPIJSON.clearStorage.example -->

<!-- UTSAPIJSON.clearStorage.tutorial -->

## uni.clearStorageSync() @clearstoragesync

<!-- UTSAPIJSON.clearStorageSync.description -->

D
DCloud_LXH 已提交
159 160
<!-- UTSAPIJSON.clearStorageSync.compatibility -->

D
DCloud_LXH 已提交
161 162 163 164 165 166 167 168 169 170 171 172
<!-- UTSAPIJSON.clearStorageSync.param -->

<!-- UTSAPIJSON.clearStorageSync.returnValue -->

<!-- UTSAPIJSON.clearStorageSync.example -->

<!-- UTSAPIJSON.clearStorageSync.tutorial -->

<!-- UTSAPIJSON.storage.example -->

<!-- UTSAPIJSON.general_type.name -->

D
DCloud_LXH 已提交
173
<!-- UTSAPIJSON.general_type.param -->