wx.removeStorageSync(string key)
wx.removeStorage 的同步版本
以 Promise 风格 调用:支持
小程序插件:支持,需要小程序基础库版本不低于 1.9.6
微信 Windows 版:支持
微信 Mac 版:支持
参数
string key
本地缓存中指定的 key
示例代码
wx.removeStorage({ key: 'key', success (res) { console.log(res) } })
try { wx.removeStorageSync('key') } catch (e) { // Do something when catch error }