我不再太熟悉reduxthunk了,但是如果我理解正确的话,以前thunk更新的要么是组件状态,要么是app(redux)状态。当您重构以使用redux observable时,您将不再获得组件的更新值。
connect(mapState, mapDispatch)
mapDispatch
loadInstruments
我相信你已经开始工作了,而且
mapState
您将在发送后从epic状态订阅一个动作。
您只需要确保epics“out”操作包含更新redux状态的数据,并且您还订阅了组件中的状态更改。如
const myEpic = (action$) =>
action$.pipe(
ofType(LAUNCH_LOAD_INSTRUMENTS_EPIC),
/* ajax operators and whatever else*/
mapTo({ type: OUT_ACTION_WITH_NEW_STATE instruments: {/*new state*/} })
)
/*reducer land...*/
if (action.type === OUT_ACTION_WITH_NEW_STATE) {
return {...prevState, instruments: action.instruments}
}
/*component land*/
connect((state) => {instruments: state.instruments}, {loadInstruments})(myComponent)
要引用你的问题标题“订阅epic组件中的动作输出流”,你不需要。订阅发生在redux可观察中间件中。因此,您不需要手动添加
subscribe()
调度一个操作->reducer->epic->action->reducer->epic->action…(重复)
connect
,则当存储更新时,该组件将以
prop