wx.uploadFile({
url: app.globalData.requestUrl + '/cloud-storekeeper/sk/uploadFile?access_token=' + access_token ,
filePath: tempFilePaths[0],
method: "Post",
name: 'file',
formData: {
},
header: {
'content-type': 'application/json'},
success: function (res) {
}
});
请求都没发出去,没有任何返回
我遇到这个Provisional headers are shown,请求没发送出去是因为被自己写的拦截器拦截了...注掉拦截器发现这个错误并不影响上传图片...
是我们自己服务器的问题
提供一下复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。