我对 Promise 和 axios 有一些疑问。
在下面的 axios 示例中,我想知道它是如何定义来运行 catch 代码的。
它是基于响应http状态码吗?像400?
axios.get('/user?ID=12345')
.then(function (response) {
console.log(response);
})
.catch(function (response) {
console.log(response);
});
谢谢。