gpt4 book ai didi

javascript - 如何根据路由更改父组件上的 header

转载 作者:行者123 更新时间:2023-12-01 01:10:16 25 4
gpt4 key购买 nike

使用 Angular 7.x,我想根据子路由以及它们是否激活来更改我的父 header 组件。所以就我而言

AppComponent   
Feature Module <= detect changes here
Child Components of feature module

所以我的路由非常简单,app-routing.module只包含使用loadChildren加载功能模块,这里没什么花哨的。

然后这个功能模块包含子组件的路由。有一个parentComponent,我们称之为ParentComponent,它包含路由器导出。我还想根据子项更改一些标题。

所以我有两个子组件:create 和“:id”(详细信息页面)。当我触发这些路由时,我需要父组件相应地更改其文本内容。因此,例如,当触发创建页面时,我想添加标题:“创建新项目”,对于 :id 页面,我想显示“详细信息页面”。

现在,我发现我需要订阅路由器事件或激活的路由(或快照)。我在这里不知所措,所以我真的不知道在这里做什么。

我的父组件现在看起来像这样:

import { Component, OnInit } from '@angular/core';
import { ActivatedRoute, Router } from '@angular/router';

@Component({
selector: 'parent-component',
templateUrl: './parent.component.html',
})
export class ParentComponent implements OnInit {
title = 'Parent Title';
// Check if it is possible to change the title according to the route
subtitle = 'Parent subtitle';

constructor(private readonly router: Router, private readonly route: ActivatedRoute) {}

ngOnInit(): void {
this.route.url.subscribe(data => {
if (this.route.snapshot.firstChild) {
console.log('yes', this.route.snapshot.firstChild);
// Change header with a if/else or switch case here
} else {
// Display standard text
console.log('no');
}
});
}
}

这是 console.logs 的输出,请注意,在我的实际应用程序中,父级名为“timesheets”。

enter image description here

是否有其他解决方案?也许是一项服务,但所有信息基本上都已经在 route 了,所以我试图弄清楚这是否是解决我的问题的方法。

最佳答案

您可以在 ParentComponent 中监听 NavigationEnd 事件,或者(我认为)更好的是您可以使用标题服务。

<小时/>

解决方案1:

ParentComponent

import {NavigationEnd, Router} from '@angular/router';
import {filter} from 'rxjs/operators';
...



constructor(private router: Router, private readonly route: ActivatedRoute) {
this.subscribeRouterEvents();

}

subscribeRouterEvents = () => {
this.router.events.pipe(
filter(e => e instanceof NavigationEnd)
).subscribe(() => {

this.title = this.route.snapshot.data['title'];
// Assuming your route is like:
// {path: 'path', component: MyComponent, data: { title: 'Page Title'}}
});
<小时/>

解决方案2:

使用TitleService。创建一个保存页面标题的服务,从 ParentComponent 订阅标题,并从 ChildComponent 向服务发送新标题。

标题服务

@Injectable({
providedIn: 'root'
})
export class TitleService {

private defaultTitle = 'Page Title';
private titleSubject: BehaviorSubject<string> = new BehaviorSubject(this.defaultTitle);
public title: Observable<string>;

constructor(private titleService: Title) {
this.title = this.titleSubject.asObservable();
}

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

父组件

pageTitle = 'Page Title';
constructor(private titleService: TitleService) {}

ngOnInit(){
this.titleService.title.subscribe(value => this.pageTitle = value);
}

子组件

pageTitle = 'Child Component Title';
constructor(private titleService: TitleService) {}

ngOnInit(){
this.titleService.setTitle(this.pageTitle);
}

关于javascript - 如何根据路由更改父组件上的 header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55218876/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com