storage.md 5.2 KB
Newer Older
D
DCloud_LXH 已提交
1 2 3 4 5 6 7 8 9 10 11 12
## 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)
杜庆泉's avatar
杜庆泉 已提交
13
	* `Android` 端采用应用内SQLIte数据库储存,每个apk对应一个数据库文件,储存位置为:/data/data/io.dcloud.uniappx(基座包名)/databases/DCStorage,同apk内的不同应用,以表名区分。
D
DCloud_LXH 已提交
14 15 16 17 18 19 20 21 22

**注意**
- `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 已提交
23 24
<!-- UTSAPIJSON.setStorage.compatibility -->

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

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

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

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

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

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

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

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

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

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

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

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

## uni.getStorage(options) @getstorage

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

## uni.getStorageInfoSync() @getstorageinfosync

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

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

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

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

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

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

## uni.removeStorage(options) @removestorage

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

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

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

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

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

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

## uni.removeStorageSync(key) @removestoragesync

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

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

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

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

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

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

## uni.clearStorage(option?) @clearstorage

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

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

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

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

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

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

## uni.clearStorageSync() @clearstoragesync

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

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

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

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

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

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

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

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

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