在这里,我在ROUTING文件下的showLoadingIndicator
文件中有一个布尔变量app.component.ts
。每当我从一个组件切换到另一个组件时,为什么布尔不起作用?
export class AppComponent {
title = 'app';
showLoadingIndicator: boolean;
if (routerEvent instanceof NavigationStart) {
this.showLoadingIndicator = true;
}
}
如果我在其他html页面中提到了showLoadingIndicator,为什么它不正确
<div *ngIf="showLoadingIndicator">
<b>Loading Please wait......</b>
</div>