跳转
1.引入包
import {hashHistory} from ‘react-router’
2.跳转传值
handleClick = (value) => {
hashHistory.push({
pathname: 'message/detailMessage',query: {
title:value.title,time:value.time,@H_301_21@text:value.@H_301_21@text
},})
}
3.接收值
console.info(this.props.location.query.title)
console.info(this.props.location.query.time)
console.info(this.props.location.query.text)