在React本机应用程序中,使用Redux-observable Reducer后得到更新,但未调用mapStatetoProps来更新UI

问题描述

我正在将redux-observable用作我的redux的中间件。想法是进行属于服务的API调用调用了我的API,这反过来也正在更新reducer,但是链接到该reducer状态的UI尚未更新。我正在使用“ redux-observable”:“ ^ 1.2.0”,“ redux”:“ 4.0.1”和“ rxjs”:“ ^ 6.6.2”。

下面是写的史诗,它仅进行登录API调用

export const accountEpic = (action$,state$) =>
    action$.pipe(
        ofType(LOGIN_STARTED),switchMap(action => {
            let options = {};
            options.url = // My URL is provided here  ;
            options.data = action.payload ;
            return from(ApiService.postRequest(options)).pipe(
                map (response => return loginSuccess({email: action.payload.email,token: response.token})))
        }),);

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)