gpt4 book ai didi

javascript - 如何使用axios客户端重试5xx错误

转载 作者:行者123 更新时间:2023-11-30 19:02:32 25 4
gpt4 key购买 nike

我正在尝试使用 axios-retry 模块向我的 api 调用添加重试。为了测试我正在使用 mockoon macosx 客户端。我在 mockoon 中设置了端点以始终返回 502 响应。以便我可以测试重试。

import axios from "axios";
import axiosRetry from 'axios-retry';

async function sendRequest(method): Promise<any> {
try {

// return 502 after 100ms
let url = `http://localhost:3000/answer`

axiosRetry(axios, {
retries: 3
});


const response = await axios[method](url);
console.log('api call completed');
return response;

} catch (error) {
console.log('api call error: ', error);
throw error;
}
}

(async () => {
const response = await sendRequest('get')
})()

这里的问题是,axios.get 没有完成执行。因此,它不会记录 api 调用错误api 调用已完成 消息。任何帮助将不胜感激。

最佳答案

axiosRetry 不适用于 axios 0.19.0(当前的 axios 版本):https://github.com/softonic/axios-retry#note

备选

使用通用的异步重试函数,例如

async function retry<T>(fn: () => Promise<T>, n: number): Promise<T> {
let lastError: any;
for (let index = 0; index < n; index++) {
try {
return await fn();
}
catch (e) {
lastError = e;
}
}
throw lastError;
}

// use
const response = await retry(() => axios[method](url), 3);

更多

Source of the retry function .

关于javascript - 如何使用axios客户端重试5xx错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59366972/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com