如何在nodejs中的axios POST请求中传递text / plain内容

时间:2017-07-26 05:39:53

标签: node.js axios

我想传递身体参数,如屏幕截图here所示( 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);
        });
};

为此我该如何正确传递身体参数?

1 个答案:

答案 0 :(得分:3)

var config = {
    headers: {
        'Content-Length': 0,
        'Content-Type': 'text/plain'
    },
   responseType: 'text'
};
  1. responseType表示服务器将使用的数据类型 回复
  2. 选项包括arraybuffer,blob,document,json,text,stream