作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要使用 MIME 发送 POST 请求 - multipart/form-data
这是我的 POST header 的默认配置: axios.defaults.headers.post['Content-Type'] = 'multipart/form-data';
我希望默认 Content-Type
应该是multipart/form-dat
,但在 chrome devtools 中我看到 Content-Type: application/json
最佳答案
你可以试试这个:
const data = new FormData();
data.append('action', 'ADD');
data.append('param', 0);
data.append('secondParam', 0);
data.append('file', new Blob(['test payload'], { type: 'text/csv' }));
axios.post('http://httpbin.org/post', data);
此代码使用 FormData API
另一个选项是使用 form-data封装:
const axios = require('axios');
const FormData = require('form-data');
const form = new FormData();
// Second argument can take Buffer or Stream (lazily read during the request) too.
// Third argument is filename if you want to simulate a file upload. Otherwise omit.
form.append('field', 'a,b,c', 'blah.csv');
axios.post('http://example.org/endpoint', form, {
headers: form.getHeaders(),
}).then(result => {
// Handle result…
console.log(result.data);
});
关于javascript - 如何在 axios 中设置 POST - multipart/form-data 的 MIME 类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55550834/
我是一名优秀的程序员,十分优秀!