uni-app中session操作

  • 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

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