У меня есть следующие наблюдаемые и угловые составляющие:
count$: Observable<number>;
this.count$ = this.getCount();
Используя следующее, я получаю значение 0 (ноль);
this.count$.subscribe(x => console.log(x));
На шаблоне у меня есть:
<a routerLink="/dash" *ngIf="(count$ | async)">
<ng-container *ngIf="count$ | async as count">
Count: {{count}}
</ng-container>
</a>
Если count$
равно 1, я получаю Count: 1
, но если count$
равно 0, содержимое Count: 0
даже не отображается.
Есть идеи, почему?