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://www.toymoban.com/news/detail-842446.html
文章来源地址https://www.toymoban.com/news/detail-842446.html
到了这里,关于微信小程序chooseAvatar获取头像的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!