我想实现的是从Identify中传值给Result
并且在Identify页面中没有Link标签来跳转,而是在某个事件之后,自动跳转至Result页面,还要携带数据
解决办法
Identify页面中
history.push({
pathname:"/result",
parmas:{
url:123
}
})
Result页面接收
cosnole.log(props.location.parmas.url)
这样就成功打印出123,传值成功