如题 在PC开发环境上uploadFile一直出错,请问是什么情况,应该不是服务器址问题,因为没有发起HTTP请求
wx.uploadFile({
url: url,
filePath: currentFile,
name: 'files',
header: { 'content-type': 'multipart/form-data' },
method: 'POST',
success: function (res) {
//var data = JSON.parse(res.data);
//if (data.ResultId == 1) {
// postFils.push(data.Data);
// currentIndex++;
// if (currentIndex >= selCount) {
// //上传完成
// var params = that.data[keys];
// if (!params)
// params = [];
// postFils.forEach((v) => {
// params.push(v);
// });
// var b = {};
// b[keys] = params;
// that.setData(b);
// }
// else {
// //继续上传
// currentFile = tempList[currentIndex];
// handle();
// }
//}
},
fail: function (d) {
console.log(d);
}
});