qq.getStorage 的同步版本
本地缓存中指定的 key
key对应的内容
qq.getStorage({
key: 'key',
success(res) {
console.log(res.data)
}
})
try {
const value = qq.getStorageSync('key')
if (value) {
// Do something with return value
}
} catch (e) {
// Do something when catch error
}