是否有任何方法可以将辅助URL配置为axios?当主要网址失败时,它必须调用辅助网址。
答案 0 :(得分:3)
您可以在第一个的捕获中调用第二个:
axios
.get('url')
.then(response => {
// handle response
})
.catch(error => {
axios
.get('url2')
.then(response => {
// handle response
});
});