我有两个组件componentA和componentB.他们都是sibbling,并且是componentMother的孩子.
我想这样做,当我点击componentA上的按钮时,它会触发componentB上的函数调用.
是使用具有可观察的服务并且使用componentA发出componentB订阅的事件或者是否有更好/最佳实践方式的方法?
我可能会使用一个使用Subject的服务.这样它既可以发布也可以订阅
原文链接:https://www.f2er.com/angularjs/140353.htmlimport { Subject } from 'rxjs/Subject'; class SomeService { private _subject = new Subject<any>(); newEvent(event) { this._subject.next(event); } get events$() { return this._subject.asObservable(); } }
您的组件可以发布,也可以订阅
@NgModul({ providers: [ SomeService ] }) class AppModule {} @Component() class ComponentOne { constructor(private service: SomeService) {} onClick() { service.newEvent('clicked!'); } } @Component() class ComponentTwo { constructor(private service: SomeService) {} ngOnInit() { this.service.events$.forEach(event => console.log(event)); } }
也可以看看: