react-router-dom 组件之间跳转传递参数

方式一:

通过query
前提:必须由其他页面跳过来,参数才会被传递过来
注:不需要配置路由表。路由表中的内容照常:

Link处
HTML方式
      
JS方式
this.props.history.push({ pathname : '/user' ,query : { day: 'Friday'} })
user页面:this.props.location.query.day

方式二:

通过state
同query差不多,只是属性不一样,而且state传的参数是加密的,query传的参数是公开的,在地址栏

Link处
  HTML方式: 
JS方式:
this.props.history.push({ pathname:'/user',state:{day : 'Friday' } })
//user页面       
this.props.location.state.day

你可能感兴趣的:(react-router-dom 组件之间跳转传递参数)