首页 > 代码库 > 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)
转载自:http://blog.csdn.net/sweiqin/article/details/60776603
react-router跳转传值
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。