微信小程序chooseAvatar获取头像

发布时间:2024年01月09日

1.wxml页面

  <button open-type="chooseAvatar" bindchooseavatar="getAvatar">
 </button>

2.js

拿临时地址上传到后台

  getAvatar(e) {

    console.log(e)
    var that = this
    wx.uploadFile({
      url: '上传地址',
      filePath: e.detail.avatarUrl,
      name: "avatarfile",
      formData: {
        'user': 'test'
      },
      header: {
        "Content-Type": "multipart/form-data"
      },
      method: 'post',
      success: function (res) {

        console.log(res)
        wx.showToast({
          title: "上传成功",
          icon: "none",
          duration: 1500
        })
        that.setData({
          avatarUrl: res.data
        })


      },
      fail: function (err) {
        wx.showToast({
          title: "上传失败",
          icon: "none",
          duration: 2000
        })
      },
      complete: function (result) {}
    })
    
  },

3.如果没有弹窗,调整一下版本

文章来源:https://blog.csdn.net/lllcuigu/article/details/135461262
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。