wx.uploadFile({
url: app.API.newImageUpload,
filePath: item.path,
name: 'file',
header: {
"content-type": "application/json"
},
})
只要上传原图就会报错,和图片大小没关系,原图也不到1M,在开发版中不会出现,只会在正式版里出现,报错内容如下
{"data": "<html>
\n<head><title>413 Request Entity Too Large</title></head>
\n<body>
\n<center><h1>413 Request Entity Too Large</h1></center>
\n<hr><center>openresty/1.19.9.1</center>
\n</body>
\n</html>
\n
\n
\n
\n
\n
\n
\n", "header": {"Access-Control-Allow-Origin": "*", "Connection": "keep-alive", "Set-Cookie": "acw_tc=0b3c7da216844122592593626efa565e39c19dcf2ab1b56f8b6f68610c6396;path=/;HttpOnly;Max-Age=1800", "Content-Length": "591", "Date": "Thu, 18 May 2023 12:17:39 GMT", "Content-Type": "text/html; charset=utf-8", "protocol": "http/1.1"}, "statusCode": 413, "cookies": ["acw_tc=0b3c7da216844122592593626efa565e39c19dcf2ab1b56f8b6f68610c6396;path=/;HttpOnly;Max-Age=1800"], "errMsg": "uploadFile:ok"}
2024年10月10日了,我也遇到了,还没有解决
这是你自己系统里定义的413 ,查查就知道,应该是你的nginx限制了上传数据的大小。
解决了吗 我也遇到了 好哥们
这种只有改限制
服务器是不是设置了上传大小限制的