0

在多个绑定中使用 AsyncPipe 是不好的做法吗?我有一个带有 observable 的组件,我将它与 *ngIf 一起用作数据输入,就像这样

<sample-component 
   ngIf="sampleObs$ | async"
   [data] = "sampleObs$ | async"
></sample-component>

它按预期工作,我只是想知道这是否是一种好的做法,因为我是 Angular 的新手

4

1 回答 1

0

我建议使用 async as

ngIf="sampleObs$ | async as sampleObs"

然后下一次调用您只需使用 sampleObs。

于 2020-04-02T20:19:11.560 回答