React 跳转页面 传递传递参数,并获取参数
程序员文章站
2022-06-03 10:05:33
...
1.跳转页面并传递参数
this.props.history.push("/detail", {
dotData: record
});
2.在detail页面回去参数
const messages = this.props.location.state.dotData
clicked = (param) => {
this.props.history.push("/Index", {
dotData: this.name
});
}
<button value="按钮" onClick={this.clicked}>点击</button>
上一篇: Centos7中mediawiki的搭建
下一篇: 常见数据库生成测试数据