在多个绑定中使用 AsyncPipe 是不好的做法吗?我有一个带有 observable 的组件,我将它与 *ngIf 一起用作数据输入,就像这样
<sample-component
ngIf="sampleObs$ | async"
[data] = "sampleObs$ | async"
></sample-component>
它按预期工作,我只是想知道这是否是一种好的做法,因为我是 Angular 的新手
在多个绑定中使用 AsyncPipe 是不好的做法吗?我有一个带有 observable 的组件,我将它与 *ngIf 一起用作数据输入,就像这样
<sample-component
ngIf="sampleObs$ | async"
[data] = "sampleObs$ | async"
></sample-component>
它按预期工作,我只是想知道这是否是一种好的做法,因为我是 Angular 的新手