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。 求助!