Bootstrap

uniapp 数据缓存

uni.setStorage(OBJECT)
将数据存储在本地缓存中指定的 key 中,会覆盖掉原来该 key 对应的内容,这是一个异步接口。


示例:uni.setStorage({
                key: 'storage_key',
                data: 'hello,uniapp,
                success: function () {
                       console.log('success');
            }
   });

uni.setStorageSync(KEY,DATA)
将 data 存储在本地缓存中指定的 key 中,会覆盖掉原来该 key 对应的内容,这是一个同步接口。

示例:try {
            uni.setStorageSync('storage_key', 'hello,uniapp);
                 catch (e) {
                       // error
          };
uni.getStorage(OBJECT)
从本地缓存中异步获取指定 key 对应的内容。

uni.getStorage({
    key: 'storage_key',
    success: function (res) {
        console.log(res.data);
    }
});
uni.get
;