中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
Code Linter 报try catch的err不能是any或者unknown
微信扫码分享
import { BusinessError } from ‘@ohos.base’; async function errorDemo() { } errorDemo().catch((err:BusinessError)=>{ err.code err.name }) try { } catch(error) { let err = error as BusinessError err.code err.name }