收藏
回答

getUserProfile获取授权之后,切换页面需要再次重新授权?

一个模板商城的小程序,使用getUserProfile接口之后,可以成功获取用户的头像和昵称,但是切换页面再重新打开“我”这个页面的时候,又需要重新进行授权

不太懂代码,就是直接用的官方文档里的代码

https://developers.weixin.qq.com/miniprogram/dev/api/open-api/user-info/wx.getUserProfile.html

Page({
  data: {
    userInfo: {},
    hasUserInfo: false,
    canIUseGetUserProfile: false,
  },
  onLoad() {
    if (wx.getUserProfile) {
      this.setData({
        canIUseGetUserProfile: true
      })
    }
  },
  getUserProfile(e) {
    // 推荐使用 wx.getUserProfile 获取用户信息,开发者每次通过该接口获取用户个人信息均需用户确认
    // 开发者妥善保管用户快速填写的头像昵称,避免重复弹窗
    wx.getUserProfile({
      desc: '用于完善会员资料', // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写
      success: (res) => {
        this.setData({
          userInfo: res.userInfo,
          hasUserInfo: true
        })
      }
    })
  },
回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容