1.官网上的写法是
axios.post(url, data)
.then(response => {
console.log(response);
})
.catch(error => {
console.log(error);
})
2.公司项目的写法是
axios.post(url, data)
.then(response => {
console.log(response);
}, error => {
console.log(error);
})
本人小白,之前没怎么用过then和catch的写法,请问这两种写法是一样的效果吗?谢谢了
首先 这个不是 axios catch 的相关 而是关于 new Promise() 的then
阮一峰在 promise 文档写的很清楚