storage.md 4.8 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 40 41 42 43 44 45 46 47 48 49
<!-- UTSAPIJSON.setStorageSync.param -->

<!-- UTSAPIJSON.setStorageSync.returnValue -->

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

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

## uni.getStorage(options) @getstorage

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

D
DCloud_LXH 已提交
50 51
<!-- UTSAPIJSON.getStorage.compatibility -->

D
DCloud_LXH 已提交
52 53 54 55 56 57 58 59
<!-- UTSAPIJSON.getStorage.param -->

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

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

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

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

D
DCloud_LXH 已提交
62 63 64 65
## uni.getStorageSync(key) @getstoragesync

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

D
DCloud_LXH 已提交
66 67
<!-- UTSAPIJSON.getStorageSync.compatibility -->

D
DCloud_LXH 已提交
68 69 70 71 72 73 74 75
<!-- UTSAPIJSON.getStorageSync.param -->

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

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

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

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

D
DCloud_LXH 已提交
78 79 80 81
## uni.getStorageInfo(options) @getstorageinfo

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

D
DCloud_LXH 已提交
82 83
<!-- UTSAPIJSON.getStorageInfo.compatibility -->

D
DCloud_LXH 已提交
84 85 86 87 88 89 90 91 92 93 94 95
<!-- UTSAPIJSON.getStorageInfo.param -->

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

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

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

## uni.getStorageInfoSync() @getstorageinfosync

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

D
DCloud_LXH 已提交
96 97
<!-- UTSAPIJSON.getStorageInfoSync.compatibility -->

D
DCloud_LXH 已提交
98 99 100 101 102 103 104 105 106 107 108 109
<!-- UTSAPIJSON.getStorageInfoSync.param -->

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

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

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

## uni.removeStorage(options) @removestorage

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

D
DCloud_LXH 已提交
110 111
<!-- UTSAPIJSON.removeStorage.compatibility -->

D
DCloud_LXH 已提交
112 113 114 115 116 117 118 119 120 121 122 123
<!-- UTSAPIJSON.removeStorage.param -->

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

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

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

## uni.removeStorageSync(key) @removestoragesync

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

D
DCloud_LXH 已提交
124 125
<!-- UTSAPIJSON.removeStorageSync.compatibility -->

D
DCloud_LXH 已提交
126 127 128 129 130 131 132 133 134 135 136 137
<!-- UTSAPIJSON.removeStorageSync.param -->

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

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

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

## uni.clearStorage(option?) @clearstorage

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

D
DCloud_LXH 已提交
138 139
<!-- UTSAPIJSON.clearStorage.compatibility -->

D
DCloud_LXH 已提交
140 141 142 143 144 145 146 147 148 149 150 151
<!-- UTSAPIJSON.clearStorage.param -->

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

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

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

## uni.clearStorageSync() @clearstoragesync

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

D
DCloud_LXH 已提交
152 153
<!-- UTSAPIJSON.clearStorageSync.compatibility -->

D
DCloud_LXH 已提交
154 155 156 157 158 159 160 161 162 163 164 165
<!-- UTSAPIJSON.clearStorageSync.param -->

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

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

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

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

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

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