ngrx effect not being called when action is dispatched from component

前端 未结 5 1065
猫巷女王i
猫巷女王i 2021-02-12 11:07

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:41

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

    Example:

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

提交回复
热议问题