我有一个angular 7 Web应用程序。例如,当我登录时,routerLink
会将我重定向到具有页眉(菜单),内容和页脚的页面。我需要刷新该页面一次才能完全加载。标头未加载。
<app-header></app-header>
<router-outlet></router-outlet>
<app-footer></app-footer>
在标头html中,ts:
ngOnInit() {
this.authenticate = this.authService.checkLogin();
this.isDoctor = this.authService.checkDoctor();
}
---------some sort of code----------
<div class="navbar-collapse collapse w-100" id="collapsingNavbar3" *ngIf="authenticate && !isDoctor">
我认为不相关,没有ngIf,问题仍然存在。