首页 前端知识 TypeScript:try/catch踩坑:Object is of type ‘unknown‘

TypeScript:try/catch踩坑:Object is of type ‘unknown‘

2024-08-12 10:08:21 前端知识 前端哥 139 299 我要收藏

在Typescript to version 4.4配置中添加了useUnknownInCatchVariables属性,默认值为true

try {
    ...
} catch(e) {
    console.log(e.message) //报错Object is of type 'unknown'
}

解决:

try {
   
    ...
} catch(e) {
   
    console.log((e as Error).message)
}
转载请注明出处或者链接地址:https://www.qianduange.cn//article/15385.html
标签
评论
发布的文章

安装Nodejs后,npm无法使用

2024-11-30 11:11:38

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!