Commit b1620a23 by 李嘉林

头像上传换移动云

parent cd8246ad
......@@ -346,41 +346,38 @@ export default {
wx.showLoading({
title: '上传中...',
})
this.get_oss_config(()=>{
let fileName = `${_this.ossConfig.dir}${userImg.split("/").pop()}`;
console.log(fileName,'----------fileName')
wx.uploadFile({
url: `${_this.ossConfig.host}`,
filePath: userImg,
name: "file",
formData: {
key: fileName,
OSSAccessKeyId: _this.ossConfig.accessid,
policy: _this.ossConfig.policy,
signature: _this.ossConfig.signature,
success_action_status: "200",
},
success(res) {
if (res.statusCode == 200) {
let host =
_this.ossConfig.host.substr(-1) == "/"
? _this.ossConfig.host
: `${_this.ossConfig.host}/`;
_this.userMsg.headPortraitUrl = `${host}${fileName}`;
wx.uploadFile({
url: `${process.env.OLSHOP_URL}/common/uploadFile`,
filePath: userImg,
name: "file",
formData: {},
success(res) {
console.log(res.data, '--res')
try {
let data = res.data ? JSON.parse(res.data) : {};
if (data.code == 200) {
_this.userMsg.headPortraitUrl = data.data.imgUrl;
console.log(_this.userMsg.headPortraitUrl,'---_this.userMsg.headPortraitUrl')
wx.hideLoading();
}
//do something
},
fail(res) {
console.log(res, "-----------------fail");
} catch (error) {
wx.showToast({
title: "上传失败",
icon: "error",
duration: 1000,
});
},
});
}
//do something
},
fail(res) {
log.info(res,'---上传头像失败')
console.log(res,'---上传头像失败')
wx.showToast({
title: "上传失败",
icon: "error",
duration: 1000,
});
},
});
},
random_string(len) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment