redux-observables链简单史诗

时间:2017-11-07 14:03:29

标签: redux-observable

从这个问题线程> https://github.com/redux-observable/redux-observable/issues/33#issuecomment-342399904

我已经提取了这个帮手:

const forkEpic = (epicFactory, ...actions) => {
    const input$ = Observable.of(...actions); 
    const actions$ = new ActionsObservable(input$);  
    return epicFactory(actions$); 
};

我的问题是,如何在epicFactory上插入Epic依赖项?

https://redux-observable.js.org/docs/recipes/InjectingDependenciesIntoEpics.html

形式的Epic依赖项

背后的主要思想是(正如所讨论的那样)是链接史诗

注入的依赖项是未定义的,正如此问题所述,传递依赖项director并不能解决问题。 (https://github.com/redux-observable/redux-observable/issues/33#issuecomment-342399904

1 个答案:

答案 0 :(得分:0)