我在服务类中创建了一个行为主题。
public personObject: BehaviorSubject<any> =
new BehaviorSubject<any>({ personId: 1, name: 'john doe' });
在导入此服务的组件上,我订阅了此行为主题,如下所示:
this._subscription.add(
this._bankService.personObject.subscribe(data => {
this.personObject = data;
console.log(data);
})
);
但我无法在行为主题中获得准确的数据集。
编辑 我忘了提到我使用 ViewContainerRef 创建了我的兄弟组件,我将其添加到带有一些评论的答案中。