修改头像

//修改头像
// getImage() {
// var that = this
// wx.chooseImage({
// count: 1,
// sizeType: ['original', 'compressed'],
// sourceType: ['album', 'camera'],
// success(res) {
// // tempFilePath可以作为img标签的src属性显示图片
// wx.showLoading({
// title: '上传中',
// })
// console.log('获取需上传头像', res)
// const tempFilePaths = res.tempFilePaths
// that.setData({
// usertv: tempFilePaths
// })
// // wx.uploadFile({
// // url: baseUrl + 'uploads_images',
// // filePath: tempFilePaths[0],
// // name: 'file',
// // success: function (res) {
// // console.log('上传头像返回===', res)
// // that.setData({
// // user_image: res.data
// // })
// // wx.hideLoading()
// // console.log('头像', that.data.user_image)
// // },
// // })
// }
// })
// },
原文地址:https://www.cnblogs.com/Annely/p/11169581.html