ngrx effect not being called when action is dispatched from component

前端 未结 5 1822
情书的邮戳
情书的邮戳 2021-02-12 11:35

I am having an issue with the ngrx store not dispatching an action to the effect supposed to deal with it.

Here is the component that tries to dispatch:



        
5条回答
  •  清歌不尽
    2021-02-12 11:55

    If you are using version 8, ensure you wrap each action with createEffect.

    Example:

    Create$ = createEffect(() => this.actions$.pipe(...))
    

提交回复
热议问题