Axios-主站点失败时调用辅助URL

时间:2018-10-01 17:31:18

标签: node.js axios

是否有任何方法可以将辅助URL配置为axios?当主要网址失败时,它必须调用辅助网址。

1 个答案:

答案 0 :(得分:3)

您可以在第一个的捕获中调用第二个:

      axios
      .get('url')
      .then(response => {
        // handle response
      })
      .catch(error => {
        axios
        .get('url2')
        .then(response => {
          // handle response
        });
      });