TypeScript知识:Property 'xxx' does not exist on type 'never'.

一、报错提示:Property 'xxx' does not exist on type 'never'.

<a href="https://www.cnblogs.com/goloving/p/14797729.html">TypeScript知识:Property 'xxx' does not exist on type 'never'.</a>

开发过程中出现这个错误是因为Typescript在执行代码检查时在该对象没有定义相应属性,这个错误不致命,遇到该错误有以下几种解决办法。

1、将对象设置成 any

this.targetArray = this.options.find((item:any) => {
    return item.articleId == val;
});
<a href="https://www.cnblogs.com/goloving/p/14797729.html">TypeScript知识:Property 'xxx' does not exist on type 'never'.</a>

2、通过字符方式获取对象属性

this.targetArray = this.options.find((item) => {
    return item["articleId"] == val;
});

3、声明断言,强制执行

this.targetArray = this.options.find((item) => {
    return (item as any).articleId == val;
});

本资源由随笔博客发布。发布者:五维国度,转载请注明出处:http://blog.suibi.site/archives/4368


本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

(0)
上一篇 2023年 3月 7日 上午9:35
下一篇 2023年 3月 7日 上午9:58

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注

联系我们

在线咨询: QQ交谈

邮件:jctestxcx@163.com

关注微信