【发布时间】:2018-09-10 07:29:24
【问题描述】:
App.js
这是事件处理按钮点击:
this.handleClick = this.handleClick.bind(this);
handleClick(e) {
debugger;
e.preventDefault();
this.context.router.history.push('/HomePage');
}
<button onClick={this.handleClick}>Navigate </button>
TypeError: 无法读取未定义的属性“历史”
我安装了这个使用:npm install prop-types --save
它不工作。
【问题讨论】:
-
你安装react-router了吗????
-
是的,我做了'npm install --save react-router' @pageNotfoUnd
-
this.props.history.push('/HomePage') 或者可以关注tag
标签: reactjs react-router npm-install