美文网首页
react如何获取路由,以及如何进行路由跳转并传参,以及接收

react如何获取路由,以及如何进行路由跳转并传参,以及接收

作者: 悦者生存 | 来源:发表于2018-05-28 15:20 被阅读257次

    1.获取路由 this.props.location.pathname
    2.进行路由跳转 this.props.history.push({pathname :"/meet"})
    3.获取动态路由参数 this.props.match.params.users

    路由传参 this.props.history.push({pathname :"/device/list",query:{data:item})

    接收路由传过去的参数 const {data}=this.props.location.query;

    相关文章

      网友评论

          本文标题:react如何获取路由,以及如何进行路由跳转并传参,以及接收

          本文链接:https://www.haomeiwen.com/subject/evjgjftx.html