2016-06-26 11 views
0

Ich verwende ngrx/Effekte. Ich habe diesen Fehler:TypeError: unbekannter Typ zurückgegeben

ORIGINAL EXCEPTION: TypeError: unknown type returned

Dieser Teil meines Codes ist:

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' }); 
    } 

Was kann die Ursache sein? Danke

Antwort

0

Danke für @apreg wies mein Fehler auf Gitter.

Ich sollte switchMapTo zu switchMap ändern.

Das offizielle Dokument und Erklärung von switchMap und switchMapTo.

+1

Einfach so;) – apreg

Verwandte Themen