当发送带有Base64编码的pdf作为正文的发布请求时,我收到错误
错误:请求正文大于maxBodyLength限制
我尝试设置以下两个
'maxContentLength':无穷大,
'maxBodyLength':无穷大
在请求配置中
const result = await axios({
url: `the url`,
headers: {'Authorization': `Bearer ${auth_token}`, 'Content-Type': 'application/json'},
method: 'post',
data: {
'ParentId': record_id,
'Name': file_name,
'body': body,
'Description': description ? description : "",
'maxContentLength': Infinity,
'maxBodyLength': Infinity
}
});
有人有解决方法吗?
最佳答案
您正在设定
'maxContentLength': Infinity,
'maxBodyLength': Infinity
在您的数据对象中。它应该在配置对象内部,在数据对象的外。
关于node.js - 错误: Request body larger than maxBodyLength limit when sending base64 post request Axios,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56868023/