# any qa.getStorageSync(string key)
qa.getStorage 的同步版本接口
# 参数
# string key
本地缓存中指定的 key
# 返回值
# any data
key 对应的内容
# 示例代码
qa.getStorage({
key: 'key',
success(res) {
console.log(res.data)
}
})
1
2
3
4
5
6
2
3
4
5
6
try {
var value = qa.getStorageSync('key')
if (value) {
// Do something with return value
}
} catch (e) {
// Do something when catch error
}
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
←
→
在线客服