如何使用Ngxs Websocket插件捕获错误?

时间:2018-07-16 13:41:12

标签: websocket angular6 ngxs

我正在尝试使用Angular 6 + Ngxs + WebSocket构建应用程序。但是,有些原因使我无法与Ngxs提供的WebSocket插件连接。

在文档中,Ngxs提到我们可以使用WebsocketMessageError操作捕获错误。 (我希望我正确理解了文档)

文档链接:https://ngxs.gitbook.io/ngxs/plugins/web-socket

但是我试图在我的Service类中导入该操作,然后它说该操作不可用。

这是我的WebSocketService类的代码。

import { Injectable } from '@angular/core';
import { Store, Actions, ofActionDispatched } from '@ngxs/store';
import { WebsocketMessageError, ConnectWebSocket } from '@ngxs/websocket-plugin';
import * as Rx from 'rxjs';


@Injectable({
  providedIn: 'root'
})

export class WebSocketService {


  private subject: Rx.Subject<MessageEvent>;

  constructor(private store: Store, private actions$: Actions) {
    this.actions$
      .pipe(ofActionDispatched(WebsocketMessageError))
      .subscribe(({ payload }) => {
        console.log('Got action: ', payload);
      });
  }
  public connect() {
    this.store.dispatch(new ConnectWebSocket());
  }

}

我遇到以下错误:

  

module @ ngxs / websocket-plugin / ngxs-websocket-plugin“'没有导出的成员   “ WebsocketMessageError”。

     

导入WebsocketMessageError

1 个答案:

答案 0 :(得分:0)

这看起来像个错误。请在github仓库中报告它: https://github.com/ngxs/store/issues