我需要知道如何使用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>
);
}
如果有人知道,请建议我
由于
答案 0 :(得分:4)
使用它来重新加载页面;
window.location.reload();
&#13;