Angular2 app.component.ts布尔值在整个页面上均不起作用

时间:2018-07-06 10:17:27

标签: angular angular2-forms angular4-forms

在这里,我在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>

0 个答案:

没有答案