鍍金池/ 問答/HTML/ react-router 4.0重定向問題

react-router 4.0重定向問題

重點向想把參數(shù)帶過去,但是不行,如下圖

<Route exact path="/big/:id" component={Big} />
<Redirect from="/dog/:id" to="/big/:id" />

輸入/dog/2結果是:
lcoaltion:8088/big/:id 好奇怪
是因為4.0 不支持這樣的寫法嗎?看了下文檔:

clipboard.png

但是之前的支持的,如下:

clipboard.png

回答
編輯回答
玄鳥
<Route from="/old-match/:id" component={({ match }) => (
  <Redirect to={`/will-match/${match.params.id}`}/>
)}/>

類似于這樣。

2017年5月27日 02:21