react-router-dom 路由跳轉傳遞參數(shù)
方式一
==通過query==
HTML方式
<Link to={{ pathname: ' /user' , query : { day: 'Friday' }}}>
JS方式
this.props.history.push({ pathname : '/user' ,query : { day: 'Friday'} })
獲取參數(shù)
this.props.location.query.day
方式二
==通過state==
HTML方式
<Link to={{ pathname : ' /user' , state : { day: 'Friday' }}}>
JS方式
this.props.history.push({ pathname:'/user',state:{day : 'Friday' } })
獲取參數(shù)
this.props.location.state.day
區(qū)別:
同query差不多,只是屬性不一樣瞧栗,而且state傳的參數(shù)是加密的,query傳的參數(shù)是公開的