我的index.js
看起来像是:
const store = configureStore()
render(
<Root history={history} store={store} />,
document.getElementById('root')
)
和我的Root.js
看起来像:
class Root extends Component {
render() {
const { store } = this.props
return (
<Provider store={store}>
<ReduxRouter />
</Provider>
)
}
}
Root.propTypes = {
store: PropTypes.object.isRequired,
history: PropTypes.object
}
export default Root
和我的configureStore.js
就像:
export default function configureStore() {
let createStoreWithMiddleware = compose(
applyMiddleware(thunk),
reduxReactRouter({ routes, createHistory })
)(createStore)
const store = createStoreWithMiddleware(rootReducer)
return store
routes.js
:
const routes = (
<Router>
<Route path={"/"} component={LoginView}>
<Route path={"/login"} component={DashboardView} />
</Route>
</Router>
)
export default routes
我的LoginView
组件就像:
class LoginView extends Component {
componentDidMount(){
const {actions} = this.props
actions.login()
}
render() {
console.log("printing props")
console.log(this.props)
console.log(this.props.history)
return (
<div>
<Login />
</div>
)
}
}
export default LoginView
function mapStateToProps(state) {
return {
login: state.login
}
}
function mapDispatchToProps(dispatch) {
return {
actions: bindActionCreators(Actions, dispatch)
}
}
export default connect(mapStateToProps, mapDispatchToProps)(LoginView)
我对history
感到非常困惑。
在我的组件中,我在道具中得到history
。与this.props.history
一样,我在组件中已经console.log(this.props.history)
。
但在我的actions
我无法以任何方式获得history
..
我的行为就像:
export function login(){
return (dispatch, getState, history) => {
console.log("get state")
console.log(getState())
console.log("history")
console.log(history)
var message = "hellooww world"
return { message, type: loginTypes.LOGIN }
}
}
我可以getState()
而不是history
。
如果我想redirect
怎么办?我想要history
,以便我可以重定向它:
history.pushState(null, '/dashboard')
任何人都可以帮助我..?对此真的很困惑..
答案 0 :(得分:0)
我发现这个GitHub页面提供了一种从动作转换的简单方法,也许它会有所帮助(它有一个登录动作的例子):