欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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>

 

相关标签: React.js