开发者问题收集

错误 TypeError:无法读取未定义的属性“ID”(Angular 8)

2019-09-27
5641

我总是在我的HTML代码中读取此错误“无法读取不确定的属性”。但是我来自API的数据是完美的加载,我该怎么办来解决此错误。(Angular 8)

我认为这是因为我的数据没有立即加载而需要时间,这是在发生这种错误。但是最终它被加载了。错误在此行中显示'*ngif =“!systemcheck&& amp; amp; amp;&!canedit”

016157898

错误的错误是这样的

267503093

我错过的部分,对不起

517036599
3个回答

您必须在 html 中的 modelVendorStatus 后添加 ?

而不是

<div *ngIf="modelVendorStatus.ID > 0">

尝试这个

<div *ngIf="modelVendorStatus?.ID > 0">

问候

Charly Sosa
2019-09-27

由于您的数据来自可观察对象,因此您需要在 html 中使用异步管道。

*ngIf="!(systemCheck | async) && !canEdit"
Poldo
2019-09-27

在 Observable 内部,您需要正确引用属性,我假设您在 onInit 内部像这样使用它,那么您必须使用另一个变量来引用,例如:

ngOnInit(){

const that = this;  //inside subscribe use that instead of this

this.stakeholderService.getVendorStatus(this.statusID).subscribe(
      result => {
        console.log(result);
        ........
        ........
        that.systemCheck = result.isSystem; //here I've replaced this with that
        ........
        ........
       }
}

This is because inside the Observable, the this reference won't work so you need to create a reference to this.

Yash
2019-09-27