获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
我也遇到了,但是参数写死可以传过去,裂开了
wx.uploadFile中formdata传不到后台?文件上传代码: var this_ = this wx.uploadFile({ url: 'http://172.*.*.*.1:8080/***',//内网本地后台 filePath: this_.data.file_path[0][0], header: { 'content-type': 'application/x-www-form-urlencoded' }, name: 'file', formData: { method:'POST', ticket: "****", wxxcx:'****', fileName:'****', fileTpye:'jpg', fileWjsm:'****' }, success(res) { const data = res.data console.log(res) //do something }, fail(res){ console.log(res) } }) 请求截图: [图片]前台发送的里面没有关于formdata传入的参数。 后台断点调试截图: [图片] 接收全是null。 求助!
2020-06-02