我想传递身体参数,如屏幕截图所示( in text / plain format )
我在nodejs / express项目中使用axios。我的需求格式如下所示:
var config = {
headers: {
'Content-Length': 0,
'Content-Type': 'text/plain'
}
};
const testInput = (req, res) => {
axios.post('https://api.sandbox.xyz.com/v1/order/new', { firstName: 'Marlon' }, config)
.then(function(response) {
console.log('saved successfully')
})
.catch(function(error) {
console.log(error);
});
};
为此我该如何正确传递身体参数?
答案 0 :(得分:3)
var config = {
headers: {
'Content-Length': 0,
'Content-Type': 'text/plain'
},
responseType: 'text'
};
responseType
表示服务器将使用的数据类型
回复