使用react-router-redux的routerMiddleware中间件提示错误是push not defined

引入中间件

import { routerReducer as routing, routerMiddleware } from 'react-router-redux';
import { browserHistory } from 'react-redux';
const finalCreateStore = compose(
    applyMiddleware(
        routerMiddleware(browserHistory)
    )
)(createStore);

使用的时候

handleClick (e) {
    this.props.push('/signin')
}

点击之后就会报错

Uncaught TypeError: Cannot read property 'push' of undefined
阅读 6k
2 个回答
handleClick (e) {
    console.log(this)//首先你将this输出看下是什么,push 没定义说明props下不存在这个属性
    this.props.push('/signin')
}
出错原因可能如下contextTypes没写:
普通写法contextTypes定义
var ReactTest = React.createClass({
    contextTypes: {
        router: React.PropTypes.object
    },
 })
ES6 contextTypes定义
ReactTest.contextTypes = {
    router: React.PropTypes.isRequired
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题