调用 wx.uploadFile上传图片到服务器
一直返回400错误
本文来自微信小程序开发者论坛 微信小程序工厂 http://www.xcxgc.com 转载请保留。
微信小程序开发者回答:
这***:
在后台断点调试吧
阿***:
这是前端的错误,根本不会进后台
刚取的access_token就失效?#微信小程序开发
这***:
不进后台说明路径有问题或者配置有问题,调试还是正式?是否配置了业务域名?是否是https?
阿***:
路径没有问题 调试的
阿***:
400 Bad RequestBad Request
ERR_BAD_REQUEST: ?POST /UploadForm.ashx HTTP/1.1 ?content-type: multipart/form-data; boundary=--------------------------969453012422220259914430 ?Referer: https://servicewechat.com/wx540db559cd5e77f3/devtools/page-frame.html ?host: 153h79422m.imwork.net ?content-length: 29965 ?Connection: close ? ?卫生么我发布的微信小程序无法搜索到+微信小程序教程
阿***:
一直都是报这个错误
这***:
我本地试了一下,没啥问题,你是不是用了最新的开发工具?之前可以上传吗?最好粘下代码
阿***:
不校验安全域名、web-view 域名、TLS 版本以及 HTTPS 证书 这个是勾选了的
请求优化微信支付商户平台代金券机制!
阿***:
wx.chooseImage({
count: 1, // 默认9
sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有
sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
success: function(res) {
console.log(res.tempFilePaths[0])
console.log(res.tempFiles[0].path)
wx.uploadFile({
url: 'http://153h79422m.imwork.net/UploadForm.ashx',
filePath: res.tempFiles[0].path,
name: 'pciture',
header: {
'content-type': 'multipart/form-data' // 默认值
},
formData: {
user: 'test'
},
success:function(r){
console.log(r.data)
console.log(r)
},
fail:function(r){
console.log(1)
}
})
},
})
阿***:
今天在开发这个上传功能 就一直出现这个错误
本文网址:http://www.91bianli.com/weixinxiaochengxu/55931.html