wx.uploadFile方法出现偶然的错误:
- The body of your POST request is not well-formed multipart/form-data</Message>
- The specified method is not allowed against this resource.
上传至阿里云的oos,对方查了日志后,说是小程序没有按照标准组装合法的参数造成的。
这个请求微信专家来解决一下。
场景:
我家的小程序每天有大量的文件上传,偶然会出现上述错误。
排查了一大圈,需要微信官方 技术出面 才能解决!
有具体的复现场景吗
var uploadTask = wx.uploadFile({
url: path,
filePath: file.path,
name: 'file',
formData: formData,
success (res) {
console.log("打印上传状态", res);
},
fail (res) {
console.error("fail", res);
},
complete (err) {
console.error("complete", err);
}})
```
代码如上,是偶发现象,不是所有上传都出现问题。
请问解决了吗?我们也遇到相似的问题
请问解决了吗 我也有这个问题 部分用户会出现这个问题