JavaScript

超轻量级php框架startmvc

react-router实现跳转传值的方法示例

更新时间:2020-05-14 19:00:01 作者:startmvc
前言本文主要给大家介绍了关于react-router跳转传值的相关内容,分享出来供大家参考学习,

前言

本文主要给大家介绍了关于react-router跳转传值的相关内容,分享出来供大家参考学习,下面来一起看看详细的介绍:

react-router跳转传值

1.引入包


import {hashHistory} from ‘React-router'

2.跳转传值


 handleClick = (value) => {
 hashHistory.push({
 pathname: 'message/detailMessage',
 query: {
 title:value.title,
 time:value.time,
 text:value.text
 },
 })
 }

3.接收值


console.info(this.props.location.query.title)
console.info(this.props.location.query.time)
console.info(this.props.location.query.text)

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对脚本之家的支持。

react router 传值 react router 跳转 react router跳转页面