描述bug
源代码
isCancel(value: any): value is Cancel;
interface Cancel {
message: string | undefined;
}
重现步骤
示例
import axios, {isCancel, AxiosError} from 'axios';
axios.get('/user?ID=12345')
.then(function (response) {
// handle success
console.log(response);
})
.catch(function (error: AxiosError) {
if (isCancel(error)) {
} else {
// error type is never
}
})
代码片段
- 无响应*
预期行为
- 无响应*
axios版本
1.6.0
适配器版本
- 无响应*
浏览器
- 无响应*
浏览器版本
- 无响应*
Node.js版本
- 无响应*
OS
- 无响应*
其他库版本
- 无响应*
其他上下文/截图
- 无响应*
2条答案
按热度按时间v1l68za41#
qvtsj1bj2#
重复的 #5153