我所有组件中都有一个标题。现在,我正在尝试制作全局头文件。我创建了一个全局标题,并在包括应用程序组件在内的每个组件中添加了选择器。我向选择器添加了一个现有的ngif条件。这没有加载我的标题。绑定显示为chrome inspector中的。但是,它可以与应用程序组件中的现有标头一起正常工作。
在我的应用程序component.html
中<global-header *ngIf="checkContentOnly() && !hideHeader()"></global-
header>
在app.component.html之前
<header class="global-header" *ngIf="checkContentOnly() && !hideHeader()">
在我的global-header-component.html
中 <header class="global-header>
<div *ngIf="mynav" class="landing-container"> Some Content
</div>
</header>
从另一个组件导航时显示标题,但重新加载时未显示。enter image description here