Angular2 为我们提供了名为Title的Service用于修改和获取页面标题,但是如果只是能够在每个页面的ngOnInit方法中为每个页面设置标题岂不是太low了,不符合Angular2高(zhuang)大(bi)的身影。我们想要的结果是在页面改变时能够动态地改变页面标题,如此最好的解决方案就是组合使用Router事件和Title Service。
Title Service
使用Service自然首先要将其引入,不过要注意Title Service并不在@angular/core中,而是在@angular/platform-browser中:
import { Title } from '@angular/platform-browser';
引入之后,自然要将其注入到当前组件中,而这通常利用constructor完成:
import { Title } from '@angular/platform-browser'; import {Component} from '@angular/core'; @Component({}) export class AppComponent { constructor(private titleService: Title) { // 使用this.title到处浪 } }
很显然,Title Service应该有某些操作页面标题的方法,不管通过查找文档还是查找源码我们都能很容易知道其只有两个方法:
- getTitle() 用于获取当前当前页面的标题
- setTitle(newTitle: String) 用于设置当前页面的标题
如果只是简单地静态地设置页面标题,则可以在ngOnInit方法中直接使用setTitle方法:
// import bala... @Component({}) export class AppComponent implements OnInit { constructor(private titleService: Title) { // 使用this.title到处浪 } ngOnInit() { this.titleService.setTitle('New Title Here'); } }
在ngOnInit中使用setTitle方法设置文档标题是较好的时机,当然也可以根据自己的需求在任意地方使用setTitle方法。
Router和Router事件
使用Router和使用Title Service流程基本一致,先引入后注入,不过要注意Router和Title Service类似并不位于@angular/core中,而是位于@angular/router中:
import { Title } from '@angular/platform-browser'; import {Component} from '@angular/core'; import {Router} from '@angular/router'; @Component({}) export class AppComponent { constructor(private titleService: Title, private router: Router) { // 使用this.title和this.router到处浪 } }
Router配置
Angular2中通过URL、Router和Component之间的对应关系进行页面之间的跳转,Router把浏览器中的URL看做一个操作指南,据此可导航到一个由客户端生成的视图,并可以把参数传给支撑视图的相应组件。所以我们需要定义路由表:
// import bala... export const rootRouterConfig: Routes = [ { path: '', redirectTo: 'home', pathMatch: 'full'}, { path: 'home', component: HomeComponent, data: {title: 'Home-Liu'} }, { path: 'about', component: AboutComponent, data: {title: 'About-Liu'} }, { path: 'github', component: RepoBrowserComponent, children: [ { path: '', component: RepoListComponent, data: {title: 'GitHub List'} }, { path: ':org', component: RepoListComponent, children: [ { path: '', component: RepoDetailComponent, data: {title: 'Repo'} }, { path: ':repo', component: RepoDetailComponent, data: {title: 'RepoDetail'} } ] }] }, { path: 'contact', component: ContactComponent, data: {title: 'Contact-Liu'} } ];
注意路径和组件之间的对应关系,并且为了能够在Router事件中获取到页面标题,我们在路由表中,为一些页面提供了数据data,并在data中设置了表示页面标题的title属性。
Router事件
利用Router事件我们就可以实现动态改变页面标题的目的,不过放置的位置很重要,我们这里选择在AppComponent的ngOnInit方法中利用subscribe订阅Router事件,因为AppComponent是根组件,所以能够订阅所有Router事件:
ngOnInit() { this.router.events .subscribe((event) => { console.log(event); // 包括NavigationStart, RoutesRecognized, NavigationEnd }); }
当然我们这里这对NavigationEnd事件感兴趣:
import {ActivatedRoute} from '@angular/router'; // import bala... // other codes ngOnInit() { this.router.events .subscribe((event) => { if (event instanceof NavigationEnd) { console.log('NavigationEnd:', event); } }); }
当然使用这种判断筛选的方式并没有错,但是在现在的前端世界里显得不够优雅,我们应该使用RxJS中的filter达到我们的目的:
import 'rxjs/add/operator/filter'; // import bala... // other codes ngOnInit() { this.router.events .filter(event => event instanceof NavigationEnd) // 筛选原始的Observable:this.router.events .subscribe((event) => { console.log('NavigationEnd:', event); }); }
当然,我们如果想要动态改变某个页面的标题,就需要获取到当前被展示的页面对应的路由信息,而这可以通过ActivatedRoute得到,其使用方式和Title Service及Router类似,不再赘述:
import { Title } from '@angular/platform-browser'; import {Component, OnInit} from '@angular/core'; import {Router, NavigationEnd, ActivatedRoute} from '@angular/router'; import 'rxjs/add/operator/filter'; import 'rxjs/add/operator/map'; @Component({}) export class AppComponent implements OnInit { constructor(private titleService: Title, private router: Router, private activatedRoute: ActivatedRoute) { // 使用this.title和this.router和this.activatedRoute到处浪 } ngOnInit() { this.router.events .filter(event => event instanceof NavigationEnd) .map(() => this.activatedRoute) // 将filter处理后的Observable再次处理 .subscribe((event) => { console.log('NavigationEnd:', event); }); } }
注意这里我们又使用了RxJS中的map来更优雅地达成我们目的。
看起来我们已经完(luo)成(suo)很多事情了,但是还不够,我们目前还没有处理子路由,即我们上文路由配置中的children属性,所以我们还需要遍历路由表以便获取到每一个页面对应的路由信息:
ngOnInit() { this.router.events .filter(event => event instanceof NavigationEnd) .map(() => this.activatedRoute) .map((route) => { while(route.firstChild) { route = router.firstChild; } return route; }) .subscribe((event) => { console.log('NavigationEnd:', event); }); }
最后,我们还需要获取到我们在路由表中为每个路由传入的data信息,然后再利用Title Service设置页面标题:
ngOnInit() { this.router.events .filter(event => event instanceof NavigationEnd) .map(() => this.activatedRoute) .map(route => { while (route.firstChild) route = route.firstChild; return route; }) .mergeMap(route => route.data) .subscribe((event) => this.titleService.setTitle(event['title'])); }
下面是完成的最终代码,或者也可以到GitHub上查看完整代码:
import { Component, OnInit } from '@angular/core'; import { Router, NavigationEnd, ActivatedRoute } from '@angular/router'; import { Title } from '@angular/platform-browser'; import 'rxjs/add/operator/filter'; import 'rxjs/add/operator/map'; import 'rxjs/add/operator/mergeMap'; @Component({...}) export class AppComponent implements OnInit { constructor( private router: Router, private activatedRoute: ActivatedRoute, private titleService: Title ) {} ngOnInit() { this.router.events .filter(event => event instanceof NavigationEnd) .map(() => this.activatedRoute) .map(route => { while (route.firstChild) route = route.firstChild; return route; }) .filter(route => route.outlet === 'primary') .mergeMap(route => route.data) .subscribe((event) => this.titleService.setTitle(event['title'])); } }
参考文档
Angular2 路由指导
Angualr2 ActivatedRoute文档
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线
暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。
艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。
《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。
更新日志
- 小骆驼-《草原狼2(蓝光CD)》[原抓WAV+CUE]
- 群星《欢迎来到我身边 电影原声专辑》[320K/MP3][105.02MB]
- 群星《欢迎来到我身边 电影原声专辑》[FLAC/分轨][480.9MB]
- 雷婷《梦里蓝天HQⅡ》 2023头版限量编号低速原抓[WAV+CUE][463M]
- 群星《2024好听新歌42》AI调整音效【WAV分轨】
- 王思雨-《思念陪着鸿雁飞》WAV
- 王思雨《喜马拉雅HQ》头版限量编号[WAV+CUE]
- 李健《无时无刻》[WAV+CUE][590M]
- 陈奕迅《酝酿》[WAV分轨][502M]
- 卓依婷《化蝶》2CD[WAV+CUE][1.1G]
- 群星《吉他王(黑胶CD)》[WAV+CUE]
- 齐秦《穿乐(穿越)》[WAV+CUE]
- 发烧珍品《数位CD音响测试-动向效果(九)》【WAV+CUE】
- 邝美云《邝美云精装歌集》[DSF][1.6G]
- 吕方《爱一回伤一回》[WAV+CUE][454M]