swan.removeStorage
解释:从本地缓存中异步移除指定 key 。
方法参数
Object object
object 参数说明
属性名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
key | String | 是 | 本地缓存中的指定的 key | |
success | Function | 否 | 接口调用成功的回调函数 | |
fail | Function | 否 | 接口调用失败的回调函数 | |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
示例
扫码体验
代码示例
请使用百度APP扫码
图片示例
代码示例 1:基础用法
- SWAN
- JS
<view class="wrap">
<view class="card-area">
<view class="list-area border-bottom">
<label class="list-item-key-4">key</label>
<input class="list-item-value" bindfocus="keyFocus" bindinput="keyInput" type="text" value="{{key}}" placeholder="请输入key" />
</view>
<view class="list-area border-bottom">
<label class="list-item-key-4">value</label>
<input class="list-item-value" bindfocus="valueFocus" bindinput="valueInput" type="text" value="{{value}}" placeholder="请输入value" />
</view>
<view>
<button bindtap="setStorage" type="primary" hover-stop-propagation="true">存储数据</button>
<button bindtap="getStorage" type="primary" hover-stop-propagation="true" disabled="{{disabled}}">读取数据</button>
<button bindtap="getStorageInfo" type="primary" disabled="{{disabled}}">获取存储数据信息</button>
<button bindtap="removeStorage" type="primary" hover-stop-propagation="true" disabled="{{disabled}}">移除第一个key对应的value值</button>
</view>
</view>
</view>
代码示例 2:搜索历史
- JS
Page({
data: {
value: '',
queryArr: []
},
valueInput(e) {
this.setData('value', e.detail.value);
},
storageQuery() {
let value = this.getData('value');
let queryArr = this.getData('queryArr');
if (value) {
// 若输入的存储数据与之前相同,则去重
const index = queryArr.findIndex(item => item === value);
if (index > -1) {
queryArr.splice(index, 1);
}
// 添加存储数组中的值
queryArr.unshift(value);
this.setData({queryArr});
}
const storeArr = queryArr.slice(0, 20);
swan.setStorageSync('queryData', storeArr);
},
clearQuery() {
swan.removeStorageSync('queryData');
this.setData('queryArr', []);
console.log('搜索历史清空成功');
}
});
错误码
Android
错误码 | 说明 |
---|---|
201 | 解析失败,请检查调起协议是否合法 |
1001 | 执行失败 |
iOS
错误码 | 说明 |
---|---|
202 | 解析失败,请检查参数是否正确 |