组件之间的交互确实可以使用服务来实现。您需要将用于组件间通信的服务使用注入到所有需要使用它的组件(所有调用方组件和被调用方方法)中,并利用 Observables 的属性。
共享服务可能如下所示:
import { Injectable } from '@angular/core';
import { Subject } from 'rxjs/Subject';
@Injectable()
export class CommunicationService {
// Observable string sources
private componentMethodCallSource = new Subject<any>();
// Observable string streams
componentMethodCalled$ = this.componentMethodCallSource.asObservable();
// Service message commands
callComponentMethod() {
this.componentMethodCallSource.next();
}
}
例子:
发件人:
callMethod = function () {
this.communicationService.callComponentMethod();
}
接收者:
this.communicationService.componentMethodCalled$.subscribe(() => {
alert('(Component2) Method called!');
});
我在这里创建了一个基本示例,单击 Component1 中的按钮将调用 Component2 中的方法。
如果您想阅读有关该主题的更多信息,请参阅专用文档部分:https ://angular.io/guide/component-interaction#parent-and-children-communicate-via-a-service