const userInfoFromStorage = wx.getStorageSync("userInfo") this.setData({ userInfo: userInfoFromStorage,
时间: 2024-04-25 22:21:23 浏览: 183
这段代码是用来从本地缓存中获取用户信息并将其设置到页面的数据中。使用的是小程序框架中的`wx.getStorageSync`方法来获取本地缓存中的数据,并将其赋值给`userInfoFromStorage`变量。然后,使用`this.setData`方法将`userInfoFromStorage`的值设置到页面的`userInfo`数据中,以便在页面上展示用户信息。
相关问题
onGetOpenid: function (e) { let that=this wx.getUserInfo({ success: res => { this.setData({ avatarUrl: res.userInfo.avatarUrl, userInfo: res.userInfo }) wx.setStorage({ key: "Userinfo", data: this.data.userInfo }) // 调用云函数 wx.cloud.callFunction({ name: 'login', data: {}, success: res => { console.log('[云函数] [login] user openid: ', res.result.openid) app.globalData.openid = res.result.openid wx.setStorageSync("myOpenId", res.result.openid); const db = wx.cloud.database({ env: 'gdouerhome-8gtde3z00e0425c7' }) return db.collection('Assistant_User').add({ //添加人 data: { Username: that.data.userInfo.nickName, Last_to_Reply: Date.now(), Last_toup_Time: Date.now(), User_head_url: that.data.userInfo.avatarUrl, Creat_user_Time: Date.now() } }).then(res => { console.log(res); wx.switchTab({ url: '../Main_page/Main_page', }) }) }, fail: err => { console.error('[云函数] [login] 调用失败', err) wx.showToast({ title: '云函数:调用失败', icon: 'none', duration: 1500 })
这是一段小程序代码,实现的功能是获取用户的个人信息和 openid,调用云函数并将用户信息存储到云数据库中。其中,使用了 wx.getUserInfo 方法获取用户信息,通过 wx.cloud.callFunction 方法调用云函数获取 openid,最后使用 wx.cloud.database 方法将用户信息存储到云数据库中。
const app =getApp() Page({ data: { }, onShow(){ this.setData({ userInfo:app.globalData.userInfo }) }, onLoad: function (options) { }, toMyOrder(){ wx.navigateTo({ url: '/pages/me/myOders/myOrders', }) }, login(){ wx.getUserProfile({ desc: '用于完善用户信息', }) .then(res=>{ console.log(res) this.setData({ userInfo:res.userInfo }) wx.cloud.database().collection('shop_users') .where({ _openid:app.globalData.openid }) .get() .then(result=>{ console.log(result) if(result.data.length == 0){ //添加用户数据到数据库 wx.cloud.database().collection('shop_users') .add({ data:{ avatarUrl:res.userInfo.avatarUrl, nickName: res.userInfo.nickName } }) .then(addResult=>{ console.log(addResult) //获取数据库用户信息 app.getUserInfo() wx.showToast({ title: '登录成功', }) }) }else{ wx.cloud.database().collection('shop_users') .doc(result.data[0]._id) .update({ data:{ avatarUrl:res.userInfo.avatarUrl, nickName: res.userInfo.nickName } }) .then(updateResult=>{ console.log(updateResult) //获取数据库用户信息 app.getUserInfo() wx.showToast({ title: '登录成功', }) }) } }) }) }, loinOut(){ app.globalData.userInfo = null wx.setStorageSync('userInfo', null) this.setData({ userInfo:null })
这段代码是一个小程序中的页面代码,其中主要实现了以下功能:
1. 在页面显示时,将全局变量 app.globalData.userInfo 中的用户信息赋值给页面的 data 中的 userInfo 变量。
2. 点击“我的订单”按钮时,跳转到“我的订单”页面。
3. 点击“登录”按钮时,调用 wx.getUserProfile 接口获取用户的头像和昵称等信息,并将其保存到数据库中。如果该用户已经存在于数据库中,则更新其信息。
4. 点击“退出登录”按钮时,将全局变量 app.globalData.userInfo 和本地存储中的 userInfo 变量都设为 null,并将页面的 userInfo 变量也设为 null。
总体来说,这段代码实现了一个小程序中常见的用户登录、退出登录和跳转页面等功能。
阅读全文