[React]react-router跳转传值

前端之家收集整理的这篇文章主要介绍了[React]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/304663.html

猜你在找的React相关文章