如何动态订阅和退订踩踏经纪人

时间:2018-12-20 14:22:02

标签: angular websocket stompjs

我想根据用户输入动态订阅和取消订阅踩踏服务,同时取消订阅。

//通过订阅Observable使用来自/ topic / ng-demo-sub的消息

get(demo) {
this._stompService
  .subscribe('/topic/${demo}')
  .subscribe((msg: Message) => {
    // use this message
  });

}

this.get(ng-demo-sub);
this.get(ng-demo-sub2)

// Unsubscribe from /topic/ng-demo-sub
this.messages.unsubscribe();
this.messages = null;

我怎么只能退订一项服务。需要建议。

0 个答案:

没有答案