从本地缓存中同步移除指定 key 。 Taro.removeStorage 的同步版本

参考文档

类型

  1. { (key: string): void; (key: string): void; }

参数

参数类型说明
keystring本地缓存中指定的 key

示例代码

示例 1

  1. try {
  2. Taro.removeStorageSync('key')
  3. } catch (e) {
  4. // Do something when catch error
  5. }

示例 2

  1. Taro.removeStorage({
  2. key: 'key',
  3. success: function (res) {
  4. console.log(res)
  5. }
  6. })
  1. try {
  2. Taro.removeStorageSync('key')
  3. } catch (e) {
  4. // Do something when catch error
  5. }

API 支持度

API微信小程序H5React Native
Taro.removeStorageSync✔️✔️