【发布时间】:2019-11-14 00:28:45
【问题描述】:
发送使用 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
}
});
有人有解决方法吗?
【问题讨论】: