7

我在服务类中创建了一个行为主题。

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 创建了我的兄弟组件,我将其添加到带有一些评论的答案中。

4

2 回答 2

12

服务

@Injectable()
export class DataService {

  private _dataListSource: BehaviorSubject<IData[]> = new BehaviorSubject([]);
  dataList: Observable<IData[]> = this._dataListSource.asObservable().distinctUntilChanged();

  getDataList(): Observable<any> {
      return this.httpService.get('/data').map(res => {
          this._dataListSource.next(res);
      });
  }
}

TS文件

export class DataComponent implements OnInit {

    public dataList$: Observable<IData[]>;

    constructor(public dataService: DataService) {}

    ngOnInit() {
        this.dataList$ = this.dataService.dataList;
        this.dataService.getDataList().subscribe();
    }
}

HTML 文件

<div *ngIf="dataList$ | async; let dataList; ">
    <div *ngFor="let data of dataList">
        {{ data | json}}
    </div>
</div>
于 2017-10-12T23:21:11.460 回答
1

我忘了提到我正在使用 ViewContainerRef 创建同级组件,结果发现行为主题与使用 ViewContainerRef 创建的组件的工作方式不同。

其他明智的任何对象的行为主题都与数字或字符串完全一样。我现在使用@Input 将数据发送到组件。

于 2017-10-17T06:38:09.097 回答