• uni.setStorage

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

uni.setStorage({
    key: 'id',
    data: 100,
    success () {
        console.log('存储成功')
    }
})
  • uni.setStorageSync

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

uni.setStorageSync('id',100)
  • uni.getStorage

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

uni.getStorage({
    key: 'id',
    success:  res=>{
        this.id = res.data
    }
})
  • uni.getStorageSync

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

const id = uni.getStorageSync('id')
  • uni.removeStorage

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

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

  • uni.removeStorageSync

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

uni.removeStorageSync('id')

本文借鉴 不解清风 博客。
链接:https://blog.csdn.net/qq_43438095/article/details/104893090#uni.removeStorageSync

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐