观察者在angular度2中用socket.io创build多个消息

我正在使用这个代码接收味精套接字在angular2,但我已经在全球应用程序,但它创build了多个时间消息..在路由另一个页面我创build了一个聊天框组件后打开像Facebook聊天框。

`get-messages() { let observable = new Observable(observer => { this.socket = io(this.url); this.socket.on('message', (data) => { observer.next(data); }); return () => { this.socket.disconnect(); }; }) return observable; } ` 

我不确定这是否有帮助。 在我使用的angular度1.x

 $scope.$on('$destroy', function(event) { // Code to un observe the socket here... }); 

我相信在angular度2有一个等值