请问大佬们,为什么我使用wx.uploadFile上传文件时,在开发环境可以上传,有返回结果,但是在体验版本上面就没有返回结果,上传失败?
getUpload(url,type){
const _this = this;
uni.showLoading({
title: '正在上传',
mask:true
});
uni.uploadFile({
url: `${unit.baseUrl}mvc/public/fileupload`,
filePath: url[0],
name: 'uploadFiles',
methods:'POST',
header: {
'content-type':'application/x-www-form-urlencoded'
},
formData: {
'user': 'test'
},
success: (res) => {
const path = JSON.parse(res.data);
console.log('上传成功',res);
if(type==='image'){
_this.uploadImgPath.push(path.attachs[0].id);
}
uni.hideLoading();
},fail:(err)=>{
uni.showToast({
title: err,
icon: 'none',
duration: 2000000
});
console.log('上传失败',err);
}
});
},
你配置upload域名了?