使用wx.upload时,提示错误:
uploadFile:fail TypeError: Request path contains unescaped characters
代码:
wx.uploadFile({
url:'https://wbadmin.**-******.net/user/upload',
filePath:tempFilePaths[0],
name:'report',
header: {"content-type": "application/x-www-form-urlencoded"},
// formData: {}, // HTTP 请求中其他额外的 form data
success: function(res){
wx.showToast({
title:res.data.state,
icon:'success',
duration:2000
})
},
fail: function(res) {
console.log(res)
}
})
星号替换的部分是普通字母。怎么提交开发版本到线上进行测试?。
本文来自微信小程序开发者论坛 微信小程序工厂 http://www.xcxgc.com 转载请保留。
本文网址:http://www.91bianli.com/weixinxiaochengxu/54386.html