使用react-router怎么实现一个跳转传值功能
更新:HHH   时间:2023-1-7


这篇文章主要为大家详细介绍了使用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)

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持天达云。

返回web开发教程...