微信小程序 本地存储有关方法
1.wx.setStorage(Object object)
将数据存储在本地缓存中指定的 key 中。会覆盖掉原来该 key 对应的内容。除非用户主动删除或因存储空间原因被系统清理,否则数据都一直可用。单个 key 允许存储的最大数据长度为 1MB,所有数据存储上限为 10MB。
| 属性 | 类型 | 默认值 | 必填 | 说明 |
|---|---|---|---|---|
| key | string | 是 | 本地缓存中指定的 key | |
| data | any | 是 | 需要存储的内容。只支持原生类型、Date、及能够通过JSON.stringify序列化的对象。 |
|
| success | function | 否 | 接口调用成功的回调函数 | |
| fail | function | 否 | 接口调用失败的回调函数 | |
| complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
例:
wx.setStorage({
key:"key",
data:"value"
})
这玩意方便就方便在 this 穿透我都不怕 啊哈哈哈 个人觉得。
取值那么就是
wx.getStorage(Object object)
Object object
| 属性 | 类型 | 默认值 | 必填 | 说明 |
|---|---|---|---|---|
| key | string | 是 | 本地缓存中指定的 key | |
| success | function | 否 | 接口调用成功的回调函数 | |
| fail | function | 否 | 接口调用失败的回调函数 | |
| complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
object.success 回调函数
参数
Object res
| 属性 | 类型 | 说明 |
|---|---|---|
| data | any | key对应的内容 |
示例代码:
wx.getStorage({
key: 'key',
success (res) {
console.log(res.data)
}
})
除了异步版本的 还有同步的 用法一样,但是是同步的:
wx.setStorageSync({})
2.wx.getStorageInfo(Object object)
异步获取当前storage的相关信息、例:
wx.getStorageInfo({
success (res) {
console.log(res.keys)
console.log(res.currentSize)
console.log(res.limitSize)
}
})
3.移除(同步和异步)本地存储 和 清空(同步和异步)本地存储信息
wx.removeStorage() // 异步从本地缓存中移除指定 key
wx.removeStorage({
key: 'key',
success (res) {
console.log(res)
}
})
wx.removeStorageSync(string key) // 同步从本地缓存中移除指定 key
以上的属性参考如下:
| 属性 | 类型 | 默认值 | 必填 | 说明 |
|---|---|---|---|---|
| key | string | 是 | 本地缓存中指定的 key | |
| data | any | 是 | 需要存储的内容。只支持原生类型、Date、及能够通过JSON.stringify序列化的对象。 |
|
| success | function | 否 | 接口调用成功的回调函数 | |
| fail | function | 否 | 接口调用失败的回调函数 | |
| complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
清空(同步和异步)本地存储信息
wx.clearStorage(Object object) 异步清理本地数据缓存。
wx.clearStorageSync() 同步清理本地数据缓存。
| 属性 | 类型 | 默认值 | 必填 | 说明 |
|---|---|---|---|---|
| success | function | 否 | 接口调用成功的回调函数 | |
| fail | function | 否 | 接口调用失败的回调函数 | |
| complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
【其实这个清空直接 wx.clearStorage() 即可 】
wx.removeStorage(Object object)
本文来自博客园,作者:咸瑜,转载请注明原文链接:https://www.cnblogs.com/bi-hu/p/15437684.html

浙公网安备 33010602011771号