react获取当前页面的url参数

react获取当前页面的url参数,必须在url路由对应的组件上获取,在子组件上获取不到,为undefined,获取形如  /news/:id  的后面的参数 id

this.props.match.params.id

获取形如 /news?id="abc"的  ?id="abc"  部分,

this.props.location.search
原文地址:https://www.cnblogs.com/beileixinqing/p/9518085.html