axios

huan_kong

168字小于1分钟

2023-12-07

函数列表

1.自动重试Get请求

函数名: retryGet

函数参数:

字段类型说明默认值
urlstring请求地址undefined
configconfig请求参数undefined

2.自动重试Post请求

函数名: retryPost

函数参数:

字段类型说明默认值
urlstring请求地址undefined
configconfig请求参数undefined

3.自动重试Head请求

函数名: retryHead

函数参数:

字段类型说明默认值
urlstring请求地址undefined
configconfig请求参数undefined

接口

config

interface config extends AxiosRequestConfig {
  // 失败后重试次数
  times?: number
  // 失败后延迟时间
  ms?: number
}