У меня есть два компонента, оба из которых установлены на OnPush
.Родительский компонент устанавливает accountLoading
в значение true при вызове getAccount()
, а затем устанавливает accountLoading
в значение false после завершения вызова.Как и ожидалось, консоль выводит:
this.accountLoading true
, за которым следуют:
this.accountLoading false
Тем не менее, шаблон не обновляется и застрял, думая, что accountLoading
это правда.Как получить шаблон для обновления, как ожидается, при изменении значения?Я хотел бы сохранить обнаружение изменений как OnPush.
Родительский компонент:
TypeScript:
public accountLoading: boolean;
...
getAccount() {
this.accountLoading = true;
this.authStore
.pipe(select(fromAuthStore.getAccountData))
.subscribe(account => {
if (account) {
this.accountLoading = false;
}
console.log('this.accountLoading', this.accountLoading);
});
// Loading account if it hasn't yet been loaded
this.authService.getAccount();
}
HTML:
<child-component
[accountLoading]="accountLoading">
</child-component>
дочерний компонент :
TypeScript:
@Input() accountLoading: boolean;
...
HTML:
<p *ngIf="accountLoading">
Loading...
</p>