react獲取當前頁面的url引數,必須在url路由對應的元件上獲取,在子元件上獲取不到,為undefined,獲取形如 /news/:id 的後面的引數 id
this.props.match.params.id
獲取形如 /news?id=”abc”的 ?id=”abc” 部分,
this.props.location.search
react獲取當前頁面的url引數,必須在url路由對應的元件上獲取,在子元件上獲取不到,為undefined,獲取形如 /news/:id 的後面的引數 id
this.props.match.params.id
獲取形如 /news?id=”abc”的 ?id=”abc” 部分,
this.props.location.search