React 页面跳转+传递参数+取参数(简单直接)
1传参
//这里可以onClick,实现点击跳转传参
this.props.history.push("/my/index", {
dotData: record //需要传递的参数
});
2.取参,
/my/index页面取参数
const messages = this.props.location.state.dotData
转载于:https://blog.csdn.net/yufengaotian/article/details/85864363
传参思路:首先获取到需要传递的参数,再进行传参(查看传递的参数是否正确)
取参思路:可以 console.log(this.props) 查看接收到的所有数据,是否包含我们传递的数据;有,则传递成功,再想办法取出来使用即可;无,则说明传递失败,需要在传参页面想办法。