React-路由传递参数

react-router-dom 路由跳转传递参数


方式一

==通过query==
HTML方式
      
      
JS方式
    this.props.history.push({ pathname : '/user' ,query : { day: 'Friday'} })

获取参数
    this.props.location.query.day

方式二

==通过state==
HTML方式
      
      
JS方式
    this.props.history.push({ pathname:'/user',state:{day : 'Friday' } })

获取参数
    this.props.location.state.day

区别:

同query差不多,只是属性不一样,而且state传的参数是加密的,query传的参数是公开的

你可能感兴趣的:(React-路由传递参数)