前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >uniapp 缓存多个数据

uniapp 缓存多个数据

作者头像
风花一世月
发布2024-03-19 13:13:48
1070
发布2024-03-19 13:13:48
举报
文章被收录于专栏:前端

获取

代码语言:javascript
复制
            uni.getStorage({
                key:'username',
            }).then(res => {
                // 如果返回数组为两位就是正确
                if(res.length==2){
                    this.username = res[1].data;
                }
                return uni.getStorage({
                    key:'password',
                })
            }).then(res => {
                if(res.length==2){
                    this.password = res[1].data;
                }
                return uni.getStorage({
                    key:'ipAddress',
                })
            }).then(res => {
                if(res.length==2){
                    this.ipAddress = res[1].data;
                }
            })
代码语言:javascript
复制
            uni.getStorage({
                key:'username',
            }).then(res => {
                // 如果返回数组为两位就是正确
                if(res.length==2){
                    this.username = res[1].data;
                }
                return uni.getStorage({
                    key:'password',
                })
            }).then(res => {
                if(res.length==2){
                    this.password = res[1].data;
                }
                return uni.getStorage({
                    key:'ipAddress',
                })
            }).then(res => {
                if(res.length==2){
                    this.ipAddress = res[1].data;
                }
            })

  添加

代码语言:javascript
复制
uni.setStorage({
                                key:'token',
                                data: res.access_token,
                            }).then(res => {
                                // console.log("保存token");
                                return uni.setStorage({
                                    key:'username',
                                    data: this.username,
                                })
                            }).then(res => {
                                // console.log("保存name");
                                return uni.setStorage({
                                    key:'password',
                                    data: this.password,
                                })
                            }).then(res => {
                                // console.log("保存password");
                                return uni.setStorage({
                                    key:'ipAddress',
                                    data: this.ipAddress,
                                })
                            }).then(res => {
                                // console.log("保存ipAddress");
                                uni.switchTab({
                                    url: './home'
                                })
                            })					
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2021-12-08,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档