当前位置:   article > 正文

微信小程序之图片上传、多图上传、头像上传、头像获取、图片上传失败问题解决_微信小程序线上版本选择头像失败怎么办

微信小程序线上版本选择头像失败怎么办

小程序用户授权获取用户头像,需点击才可以让用户选择是否授权。

图片上传失败问题解决

图片上传 一定要记得修改合法域名,不然会失败,而且找不到报错信息哟!并且域名采用 https
在这里插入图片描述

点击,用户授权,获取用户头像,上传服务器:

<button class="getuserinfo" open-type="getUserInfo" lang="zh_CN" bindgetuserinfo="onGotUserInfo">获取用户信息</button>
  • 1
 onGotUserInfo: function (e) {
   
    // console.log(e)
    // console.log(e.detail.userInfo)
    // console.log(e.detail.rawData)
    // this.setData({
   
    //   usertximg: e.detail.userInfo.avatarUrl
    // })
    wx.login({
   
      success: res => {
   
        // 发送 res.code 到后台换取 openId, sessionKey, unionId
        if (this.data.code == '') {
   
          this.setData({
   
            code: res.code
          })
          wx.request({
   
            url: 'https://wx.xxx.com/wechat/setWxImg',
            data: {
   
              encryptedData: e.detail.encryptedData,
              iv: e.detail.iv,
              code: this.data.code,
              wx_img: e.detail.userInfo.avatarUrl
            },
            method: "post",
            success: (res) => {
   
              console.log(res);
              if (res.data.message == "ok") {
   
                wx.setStorageSync('openid', res.data.data.openid);
                getApp().globalData.openid = wx.getStorageSync('openid');
                this.setData({
   
                  isdenglu: false,
                  openid
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/675082
推荐阅读
相关标签
  

闽ICP备14008679号