我希望在更新子组件时更新父组件。我试图使用事件发射器实现这一点,但我使用路由器插座来调用子组件。我不知道该怎么做。
任何人都可以指导我该怎么做才能得到这个?
由于
答案 0 :(得分:3)
您无法直接从子组件更新父组件。但您可以创建一个可以从任何组件与任何其他组件进行交互的服务,如下所示。
创建文件communication.service.ts
import { Injectable } from '@angular/core';
import { Observable } from 'rxjs/Observable';
import { Subject } from 'rxjs/Subject';
@Injectable()
export class CommunicationService {
constructor() { }
private emitChangeSource = new Subject<any>();
changeEmitted$ = this.emitChangeSource.asObservable();
emitChange(data: {}) {
this.emitChangeSource.next(data);
}
}
在子组件中
import { Component } from '@angular/core';
import { CommunicationService } from './communication.service';
@Component({
templateUrl: `./child.component.html`,
styles: ['child.component.css']
})
export class ChildComponent{
constructor(private _communicationService: CommunicationService) { }
onSomething() {
this._communicationService.emitChange({proprty: 'value'});
}
}
在父组件
中import { Component } from '@angular/core';
import { CommunicationService } from './communication.service';
@Component({
templateUrl: `./parent.component.html`,
styles: ['./parent.component.css']
})
export class ParentComponent {
constructor( private _communicationService: CommunicationService ) {
_communicationService.changeEmitted$.subscribe(data => {
// ...
})
}
}