javascript – 以角度2动态更改标题字符串

前端之家收集整理的这篇文章主要介绍了javascript – 以角度2动态更改标题字符串前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的应用程序中我试图根据我所在的页面动态更改标题组件中的标题,因此在我的标题组件中我想使用
<h1>{{title}}</h1>

我希望它根据我所在的页面进行更改.现在标题已修复,因此它位于每个页面

下面是我试图改变的图像

基本上,如果我在主页上我希望它说回家,然后如果我在一个关于页面,我希望它改为约…

我不确定如何解决这个问题,我研究的所有内容都是改变< head>< / head>中的标题.标签

解决方法

您可以创建专用于更新标题组件中标题的服务.只需在头部组件中注入服务并订阅专用的 BehaviorSubject.然后,您可以在任何组件中注入此服务,并使用该组件中的setTitle方法,该方法将更新标头组件中的标题.请查看以下代码
//headerTitle.service.ts
@Injectable()
export class headerTitleService {
  title = new BehaviorSubject('Initial Title');

  setTitle(title: string) {
    this.title.next(title);
  }
}

//header.component.ts
title = '';

constructor(private headerTitleService: HeaderTitleService) {}

ngOnInit() {
  this.headerTitleService.title.subscribe(updatedTitle => {
    this.title = updatedTitle;
  });
}

//header.component.html
<h1>{{title}}</h1>

//about.component.ts
constructor(private headerTitleService: HeaderTitleService) {}

ngOnInit() {
  this.headerTitleService.setTitle('About');
}

Working demo

原文链接:https://www.f2er.com/js/156221.html

猜你在找的JavaScript相关文章