私はNavイオン2を使用しています。左右のメニューでグローバルヘッダを保持する必要があります。現在、私のメニューは正常に動作していますが、小さな問題があります。ルート・ページを変更すると、グローバル・ヘッダーのタイトルを変更したいのですが、その方法を理解できないようです。ナビゲーションIonic 2のグローバルNavBar動的に変更するタイトル
<ion-header>
<ion-navbar>
<button menuToggle="left" start>
<img src="build/images/brite-logo-bulb.png" width="auto" height="25px"/>
</button>
<ion-title>
// how can i change the title dynamically
</ion-title>
<button menuToggle="right" end (click)="clearNewAlerts()">
<ion-icon name="information-circle">
<div class="notice-circle" *ngIf="newAlerts != 0">{{newAlerts}}</div>
</ion-icon>
</button>
</ion-navbar>
</ion-header>
<!--Left Navigation Menu HTML-->
<ion-menu [content]="content" type="overlay">
<img src="build/images/brite-logo.png" width="100px" height="auto"/>
<ion-content>
<div class="menu-greeting">Hello, {{firstName}}!</div>
<hr class="brite-nav"/>
<ion-list no-lines>
<button class="brite-nav-item" ion-item (click)="openPage('home')" menuToggle>
Home
</button>
<button class="brite-nav-item" ion-item (click)="openPage('bills')" menuToggle>
Bills
</button>
</ion-list>
<hr class="brite-nav"/>
</ion-content>
</ion-menu>
<!--Right Alerts Menu-->
<ion-menu [content]="content" side="right" class="alerts" type="overlay">
<brt-alerts></brt-alerts>
</ion-menu>
<!--Navigation View-->
<ion-nav id="nav" #content [root]="rootPage" class="dashboard-wrap"></ion-nav>
私は新しいページに移動するときに動的に<ion-title></ion-title>
を変更するかどうかはわかりませんが含まれているページ -
dashboard.component.html:私は、次のコードを持っています。
dashboard.compontent.ts
export class DashboardComponent implements OnInit{
// private properties
private rootPage: any;
constructor(private profileService: ProfileService, private alertsService: AlertsService){
this.rootPage = UsageTabs;//temporarily
this.setWelcomeName();
}
/**
* @name openPage
* @description
* Sets the [root] page to selected page from the menu.
*/
openPage(page){
if(page === 'home') {this.rootPage = HomeComponent; return;}
if(page === 'contact') {this.rootPage = ContactComponent; return;}
if(page === 'profile') {this.rootPage = ProfileComponent; return;}
if(page === 'usage') {this.rootPage = UsageTabs; return;}
if(page === 'share') {this.rootPage = ShareUsageComponent; return;}
}
}
これは1つの問題を解決しますが、私のページにはタブが付いています。だから私はタブでページに行くと、私は別のページにタブとしてタイトルを変更することができる必要があります。 – inspired
まあ、可能な解決方法は、 'Events'でタブ変更をブロードキャストし、それを' dashboard.compontent.ts'で購読することです - > this.titleの名前を変更してください。 –
私の答えを更新しました - これは助けるかもしれません –