我试图在同一个多部分 POST 请求中向我的 REST 端点发送一个文件和一些 json。该请求是使用 axios 库直接从 javascript 发出的,如下面的方法所示。
doAjaxPost() {
var formData = new FormData();
var file = document.querySelector('#file');
formData.append("file", file.files[0]);
formData.append("document", documentJson);
axios({
method: 'post',
url: 'http://192.168.1.69:8080/api/files',
data: formData,
})
.then(function (response) {
console.log(response);
})
.catch(function (response) {
console.log(response);
});
}
但是,问题是当我在网络选项卡中的 chrome 开发人员工具中检查请求时,我发现没有Content-Type
字段 for document
,而 forfile
字段Content-Type
是application/pdf
(我正在发送一个 pdf 文件)。
在服务器Content-Type
上document
是text/plain;charset=us-ascii
。
更新:
我设法通过 Postmandocument
以.json
文件形式发送正确的请求。虽然我发现这仅适用于 Linux/Mac。