如何使用react-router通过onclick来刷新页面

时间:2017-10-30 02:55:32

标签: reactjs react-router react-redux router

我需要知道如何使用react-router

通过onClick编写代码来刷新页面

我尝试使用history.push,但它不起作用。

这是我的代码:

  onClick() {
this.props.history.push(`/a/${this.props.a}`);
// window.location.reload();


}

      goPage() {
    return (
      <Button onClick={this.onClick}>
        Begin
      </Button>
    );
  }

如果有人知道,请建议我

由于

1 个答案:

答案 0 :(得分:4)

使用它来重新加载页面;

&#13;
&#13;
window.location.reload();
&#13;
&#13;
&#13;