gpt4 book ai didi

javascript - axios 错误 typescript ,注释必须是 'any' 或 'unknown' 如果?

转载 作者:行者123 更新时间:2023-12-05 00:24:40 24 4
gpt4 key购买 nike

我收到了 Catch clause variable type annotation must be 'any' or 'unknown' if specified.ts(1196) 的错误
用下面的代码

import axios, { AxiosError } from "axios";
try {

} catch(error: AxiosError) {
throw Error(error);
}
如何在TS中抛出axios错误?

最佳答案

使用 AxiosError 来转换错误

import  { AxiosError } from 'axios';

catch (error) {
const err = error as AxiosError
console.log(err.response?.data)
}

关于javascript - axios 错误 typescript ,注释必须是 'any' 或 'unknown' 如果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69264472/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com