swan.clearStorage
解释:清理本地数据缓存。
方法参数
Object object
object参数说明
属性名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
success | Function | 否 | 接口调用成功的回调函数 | |
fail | Function | 否 | 接口调用失败的回调函数 | |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
示例
请使用百度APP扫码
图片示例
代码示例
- 在 js 文件中
Page({
clearStorage() {
swan.clearStorage({
success: res => {
console.log('clearStorage success', res);
},
fail: err => {
console.log('clearStorage fail', err);
}
})
}
});
错误码
Android
错误码 | 说明 |
---|---|
1001 | 执行失败 |
iOS
错误码 | 说明 |
---|---|
401 | 安全校验失败 |