欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Angular 2 利用Router事件和Title实现动态页面标题的方法

程序员文章站 2022-07-06 21:20:41
angular2 为我们提供了名为title的service用于修改和获取页面标题,但是如果只是能够在每个页面的ngoninit方法中为每个页面设置标题岂不是太low了,不...

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文档

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。