答案 0 :(得分:2)
您可以从共享服务中发出事件,并在标题组件中订阅此事件,如:
在您当前的路线组件中:
onEvent() {
this.sharedService.changeTitle(newTitle);
}
在服务中:
titleChanged = new EventEmitter();
changeTitle(title) {
this.titleChanged.emit(title);
}
标题组件中的:
title: string = '';
ngOnInit(){
this.sharedService.titleChanged.subscribe(title => this.title = title);
}