异步接口
uni.setStorage(OBJECT)
将数据存储在本地缓存中指定的 key 中,会覆盖掉原来该 key 对应的内容
uni.setStorage({
key: 'storage_key',
data: 'hello',
success: function () {
console.log('success');
}
});
uni.getStorage(OBJECT)
从本地缓存中异步获取指定 key 对应的内容
uni.getStorage({
key: 'storage_key',
success: function (res) {
console.log(res.data);
}
});
uni.getStorageInfo(OBJECT)
异步获取当前 storage 的相关信息
uni.getStorageInfo({
success: function (res) {
console.log(res.keys);
console.log(res.currentSize);
console.log(res.limitSize);
}
});
uni.removeStorage(OBJECT)
从本地缓存中异步移除指定 key
uni.removeStorage({
key: 'storage_key',
success: function (res) {
console.log('success');
}
});
uni.clearStorage()
清理本地数据缓存
uni.clearStorage();
同步接口
uni.setStorageSync(KEY,DATA)
将 data 存储在本地缓存中指定的 key 中,会覆盖掉原来该 key 对应的内容
try {
uni.setStorageSync('storage_key', 'hello');
} catch (e) {
// error
}
uni.getStorageSync(KEY)
从本地缓存中同步获取指定 key 对应的内容
try {
const value = uni.getStorageSync('storage_key');
if (value) {
console.log(value);
}
} catch (e) {
// error
}
uni.getStorageInfoSync()
同步获取当前 storage 的相关信息
try {
const res = uni.getStorageInfoSync();
console.log(res.keys);
console.log(res.currentSize);
console.log(res.limitSize);
} catch (e) {
// error
}
uni.removeStorageSync(KEY)
从本地缓存中同步移除指定 key
try {
uni.removeStorageSync('storage_key');
} catch (e) {
// error
}
uni.clearStorageSync()
同步清理本地数据缓存
try {
uni.clearStorageSync();
} catch (e) {
// error
}