uniapp数据缓存(存储/获取/移除/清空)

1.存储:

异步:uni.setStorage(OBJECT)
uni.setStorage({
	key: 'storage_key',
	data: 'hello',
	success: function () {
		console.log('success');
	}
});
同步:uni.setStorageSync(KEY,DATA)
try {
	uni.setStorageSync('storage_key', 'hello');
} catch (e) {
	// error
}

2.获取:

异步:uni.getStorage(OBJECT)
uni.getStorage({
	key: 'storage_key',
	success: function (res) {
		console.log(res.data);
	}
});
同步:uni.getStorageSync(KEY)
try {
	const value = uni.getStorageSync('storage_key');
	if (value) {
		console.log(value);
	}
} catch (e) {
	// error
}

3.移除:

异步:uni.removeStorage(OBJECT)
uni.removeStorage({
	key: 'storage_key',
	success: function (res) {
		console.log('success');
	}
});
同步:uni.removeStorageSync(KEY)
try {
	uni.removeStorageSync('storage_key');
} catch (e) {
	// error
}

4.清除本地缓存

异步:uni.clearStorage()

uni.clearStorage();
同步:uni.clearStorageSync()
try {
	uni.clearStorageSync();
} catch (e) {
	// error
}

注:

异步 API,在调用该方法后会立即返回,并且可能不会立即将数据存储到本地存储空间中,而是需要等待一定的时间。因此,在调用该方法后如果需要使用该数据,需要在回调函数中进行操作

同步 API,调用该方法后会立即阻塞并等待数据存储完成,返回的是存储操作的结果。可以简化代码,避免使用回调函数。但是,需要注意同步 API 可能会阻塞主线程,因此应该尽量避免在 UI 线程中使用同步 API。

同步异步详细解答可跳转--> 同步,异步及Promise的详解_promise 同步执行-CSDN博客

获取详细信息点击官方文档->uni.setStorage(OBJECT) @setstorage | uni-app官网

你可能感兴趣的:(uni-app,缓存)