Если вы посмотрите на документы (Это еще одна топика c, но показывает пример для тайм-аута).
Существует два способа установки timeout
.
// Create an instance using the config defaults provided by the library
// At this point the timeout config value is `0` as is the default for the library
const instance = axios.create();
// Override timeout default for the library
// Now all requests using this instance will wait 2.5 seconds before timing out
instance.defaults.timeout = 2500;
// Override timeout for this request as it's known to take a long time
instance.get('/longRequest', {
timeout: 5000
});
Вы можете переопределить значение по умолчанию с помощью instance.defaults.timeout
или передать его в качестве опции для вашего вызова.
Вы также можете увидеть другой пример в документации .
Если он не работает, возможно, у вас устаревшая версия ax ios или вы что-то упустили.