手记

react页面跳转传参

    今天给大家来分享下react页面跳转传参的具体方法:

1.传参
//这里可以onClick,实现点击跳转传参
this.props.history.push("/my/index", {

dotData: record //需要传递的参数

});

2.取参
/my/index页面取参数

const messages = this.props.location.state.dotData

    传参思路:首先获取到需要传递的参数,再进行传参(查看传递的参数是否正确)
    取参思路:可以 console.log(this.props) 查看接收到的所有数据,是否包含我们传递的数据;有,则传递成功,再想办法取出来使用即可;无,则说明传递失败,需要在传参页面想办法。

    以上便是关于react页面跳转传参的具体方法,更多内容干货可关注慕课网~

0人推荐
随时随地看视频
慕课网APP