收藏
回答

wx.uploadFile使用问题?

请问大佬们,为什么我使用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);
					}
				});
			},
回答关注问题邀请回答
收藏

1 个回答

  • Mr.Zhao
    Mr.Zhao
    2020-06-16

    你配置upload域名了?

    2020-06-16
    有用 1
    回复 1
    • System Call
      System Call
      2020-06-16
      谢谢大佬,就是upload域名,现在好了
      2020-06-16
      回复
登录 后发表内容
问题标签