React and Redux: redirect after action

后端 未结 6 1376
孤城傲影
孤城傲影 2020-12-30 01:43

I develop a website with React/Redux and I use a thunk middleware to call my API. My problem concerns redirections after actions.

I really do not know how and where

6条回答
  •  再見小時候
    2020-12-30 01:52

    In the Redux scope must be used react-redux-router push action, instead of browserHistory.push

    import { push } from 'react-router-redux'
    
    store.dispatch(push('/your-route'))
    

提交回复
热议问题