How can I append items to Observable

后端 未结 3 463
甜味超标
甜味超标 2020-12-16 10:57

How do I append items to Observable?

This is some code:

 this.logEntries = this.controllerService.getLog(this.controller.remoteID, this.         


        
3条回答
  •  太阳男子
    2020-12-16 11:33

    Take a look at BehaviorSubject:

    It's an Observable where you can push a new item as containing object.

提交回复
热议问题