我在組件(Angular2)的ngOnInit()中訂閱,然後在ngOnDestroy()中取消訂閱。我的組件的第二初始化後,它給我一個錯誤:爲什麼我不能在取消訂閱後在同一個EventEmitter上訂閱
ObjectUnsubscribedError: object unsubscribed
在我的課,我有:
ngOnInit() {
this.chatService.getConversationsEvent()
.subscribe((data:Data<Array<Conversation>>) => {
console.log('from correspondence');
});
this.scrollToBottom();
}
ngOnDestroy() {
this.chatService.getConversationsEvent().unsubscribe();
}
這裏添加一些代碼 – Sreemat
添加的代碼有點 –