Wechat:
467015242
changeAvatar:function (){
var that=this;
wx.chooseImage({
count: 1, // 9
sizeType: ["original", "compressed"], //
sourceType: ["album", "camera"], //
success: function (res) {
// console.log(avatar,"avatar")
// tempFilePathimgsrc
var avatarSrc = res.tempFilePaths
console.log(avatarSrc,"avatarSrc")
wx.uploadFile({
url: "https://product.fishqc.com/User/Profile/upImg",
filePath: res.tempFilePaths[0],
name: encodeURI("file"),
formData: { "avatar": encodeURI(avatarSrc) }, // HTTP form data
header: {
"content-type": "multipart/form-data", //
"skey": wx.getStorageSync("getstoreskey")
},
success: function (info) {
// that.getuserheadImgstatus()
// that.getuserInfo()
that.setData({
"UserInfodata.image": res.tempFilePaths[0],
"Headimg": res.tempFilePaths[0]
});
wx.setStorageSync("image", res.tempFilePaths[0]);
wx.setStorageSync("Headimg", res.tempFilePaths[0]);
}
})
}
})
}