3

因此,我的 Web 应用程序中有一个下拉列表,我连接到我的服务 api 调用,它将使用位置列表填充下拉列表。

我创建了服务并使用 httpclient 设置了 Observable。

然后我调用服务来获取 api 调用的结果并绑定到我的 location 属性。

例如在我的component.ts文件里面ngOnInit()我有这个:

ngOnInit() {
    this._transactionService.getLocations('User').subscribe(data => this.location = data);
    }

在我的 component.html 文件中:

<select [ngModel]="null" formControlName="location">
            <option value="null" disabled selected>{{'SelectLocation' | translate}}</option>
            <option *ngFor="let store of location._storeList" [ngValue]="store._storeKey">{{ store._storeName }}</option>
        </select>

当我加载页面时,我注意到它在几分之一秒内加载很奇怪,然后自行纠正并正确加载。我检查了我的下拉列表,发现它正确绑定了我想要的位置列表,并且我可以很好地选择它。看起来挺好的!但是,当我检查元素 > 控制台时,我看到了这个错误:

ERROR TypeError: Cannot read property '_storeList' of undefined
    at Object.eval [as updateDirectives] (PortalComponent.html:11)
    at Object.debugUpdateDirectives [as updateDirectives] (core.js:14651)
    at checkAndUpdateView (core.js:13798)
    at callViewAction (core.js:14149)
    at execComponentViewsAction (core.js:14081)
    at checkAndUpdateView (core.js:13804)
    at callViewAction (core.js:14149)
    at execEmbeddedViewsAction (core.js:14107)
    at checkAndUpdateView (core.js:13799)
    at callViewAction (core.js:14149)

因此,虽然绑定和结果工作正常,但我不确定为什么会出现控制台错误。我认为这与 Angular 生命周期有关,ngOnInit()但我不确定如何正确解决此问题。我应该调用我的服务而不是ngOnInit()其他地方吗?解决此问题的最佳做法是什么?

4

1 回答 1

2

由于location是异步加载的,使用时,undefinedAngular 加载执行模板时是第一次。

解决方案是使用安全导航(又名 elvis ?.)运算符:

<option *ngFor="let store of location?._storeList" [ngValue]="store._storeKey">{{ store._storeName }}</option>
于 2018-03-26T22:18:26.867 回答