react-router路由传参
方式一:通过params
-
路由表中
<Route path=' /test/:id ' component={test}></Route>
-
Link
处<Link to={ ' /test/ ' + ' 2 ' } activeClassName='active'>XXXX</Link>
-
JS方式
this.props.history.push( '/user/'+'2' )
-
接收值
通过 this.props.match.params.id 就可以接受到传递过来的参数(id)
方式二:通过query
前提:必须由其他页面跳过来,参数才会被传递过来
注:不需要配置路由表。路由表中的内容照常像下面这样配置
<Route path='/test' component={test}></Route>
-
Link
处<Link to={{ pathname: '/test' , query : { type: 'sex' }}}>
-
JS方式
this.props.history.push({ pathname : '/test' ,query : { type: 'sex'} })
-
接收值
this.props.location.query.sex
注意:建议不用,刷新页面时丢失
方式三:通过state
同query差不多,只是属性不一样,而且state传的参数是加密的,query传的参数是公开的,在地址栏
Link
处
<Link to={{ pathname : ' /test' , state : { type: 'sex' }}}>
-
JS方式
this.props.history.push({ pathname:'/test',state:{type: 'sex' } })
-
接收值
this.props.location.state.sex