Taro.removeStorageSync(key)
从本地缓存中同步移除指定 key 。 Taro.removeStorage 的同步版本
类型
{ (key: string): void; (key: string): void; }
参数
参数 | 类型 | 说明 |
---|---|---|
key | string | 本地缓存中指定的 key |
示例代码
示例 1
try {
Taro.removeStorageSync('key')
} catch (e) {
// Do something when catch error
}
示例 2
Taro.removeStorage({
key: 'key',
success: function (res) {
console.log(res)
}
})
try {
Taro.removeStorageSync('key')
} catch (e) {
// Do something when catch error
}
API 支持度
API | 微信小程序 | H5 | React Native |
---|---|---|---|
Taro.removeStorageSync | ✔️ | ✔️ |