axios-miniprogram/docs/pages/api/is-cancel.md

14 lines
204 B
Markdown
Raw Normal View History

2023-03-25 16:22:01 +08:00
# isCancel
## `axios.isCancel`是否取消
可以判断当前错误是否来自取消请求
2023-04-13 14:16:11 +08:00
```ts
2023-03-25 16:22:01 +08:00
axios('/user').catch((error) => {
if (axios.isCancel(error)) {
// 请求被取消了
}
});
```