HTTP调用以使用Axios / Axios-retry将数据发送到服务器

时间:2019-02-14 13:07:45

标签: node.js axios

我有一个JSON对象,希望使用服务器的API密钥发送到服务器。我希望重试次数为3,以便在以前的呼叫失败时可以重试发送数据。

我不确定是否要使用“ axios-retry”或“ retry-axios”。 如何在标头中配置Content-Type,以及在何处添加API密钥和要发送的数据。我目前的代码如下:

:typeof Greeter

1 个答案:

答案 0 :(得分:0)

使用axios代替,它是用于浏览器和node.js的基于Promise的HTTP客户端

var axios = require('axios')
axios.post(url,data, {
headers: {
    'authorization': your_token,
    'Accept' : 'application/json',
    'Content-Type': 'application/json'
}

}).then(response => {
// return  response;
}).catch((error) => {
//return  error;
});