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

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

2024-08-12 10:08:21 前端知识 前端哥 135 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
标签
评论
发布的文章

jQuery Knob 项目教程

2024-08-19 22:08:18

jquery 实现倒计时

2024-08-19 22:08:06

echarts柱状图属性

2024-08-19 22:08:57

word模版导出(echarts)ftl

2024-08-19 22:08:57

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