0

ngrx/effectsを使用しています。このエラーが発生しました:

元の例外: TypeError: 不明な型が返されました

これは私のコードの一部です:

  this.store.dispatch({ type: CHAT_LOAD_MESSAGES, payload: chatId });

  @Effect() loadMessages$ = this.updates$
    .whenAction(CHAT_LOAD_MESSAGES)
    .map<string>(toPayload)
    .do(chatId => console.log('chatId', chatId))    // Here I can get chatId
    .switchMapTo(chatId => this.chatService.loadMessages(chatId))  // The error comes out because of this line
    .do(res => console.log('res', res))             // This didn't run
    .map((messages: Message[]) => ({ type: CHAT_LOAD_MESSAGES_SUCCESS, payload: messages }));

  loadMessages(chatId: string): Observable<Message[]> {
    // This is what I am using to test right now.
    // Maybe this line is wrong? How can I write correct simulation?
    return Observable.of([{ id:1, content:'Hi' });
  }

何が原因でしょうか? ありがとう

4

1 に答える 1

0

@apreg に感謝します。Gitter での私のエラーを指摘してください。

に変更switchMapToする必要がありswitchMapます。

switchMapswitchMapToの公式ドキュメントと説明。

于 2016-06-26T04:47:45.173 に答える