Uni-app本地存储

一. 存储
uni.setStorage(OBJECT)

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

示例:

uni.setStorage({
    key:"token",
    data:'123456789',
    success: function (){
        console.log("存储成功")
    }
})

uni.setStorageSync(KEY, DATA)

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

try{
    uni.setStorageSync('token', '123456')
} catch (e){
    //错误
}

二. 获取
uni.getStorage(OBJECT)

从本地存储中异步获取对应可以对应的内容

uni.getStorage({
    key:"token",
    success: function(res){
        console.log(res.data); //123456789
    }
})

uni.getStorageSync(KEY)

从本地缓存中同步获取指定key对应的内容

try {
    const value = uni.getStorageSync("token");
    if(value) {
        console.log(value)
    }
} catch(e){
    //错误
}

uni.getStorageInfo(OBJECT)

异步获取当前Storage的相关信息

uni.getStorageInfo({
    success: function(res) {
        console.log(res.keys);
        console.log(res.currentSize);
        console.log(res.limitSize);
    }
})

uni.getStorageInfoSync()

同步获取当前storage的相关信息

try {
    const res = uni.getStorageInfoSync();
    console.log(res.keys);
    console.log(res.currentSize);
    console.log(res.limitSize);
} catch (e) {
    // 错误
}

三. 移除
uni.removeStorage(OBJECT)

从本地缓存中异步移除指定key

uni.removeStorage({
    key:'token',
    success: function(res){
        console.log('删除成功')
    }
})

uni.removeStorageSync(KEY)

从本地缓存中同步移除指定key

try {
    uni.removeStorageSync('storage_key')
} catch(e){
    //错误
}

uni.clearStorage()

清除本地缓存

uni.clearStorage();

uni.clearStorageSync()

同步清理本地数据缓存

try {
	uni.clearStorageSync();
} catch (e) {
	//错误
}

你可能感兴趣的:(Uni-app本地存储)