wx.getStorageSync

wx.getStorageSync(string key)

wx.getStorage() 的同步版本

参数
  • key (string()) – 本地缓存中指定的 key

返回

  • any data - key对应的内容

示例

wx.getStorage({
  key: 'key',
  success(res) {
    console.log(res.data)
  }
})
try {
  const value = wx.getStorageSync('key')
  if (value) {
    // Do something with return value
  }
} catch (e) {
  // Do something when catch error
}