每次用配置react
路由都會考慮是否應該給給<Route>
組件加上exact
或strict
。下面妹子將於自認爲比較清晰的方式列舉出來什麼場景須要加和不加。javascript
本文案例主要以react-router v4+爲主,v5版本是由於發佈時版本依賴有問題而直接跳成這個大版本的,用法和4徹底相同,就是這麼任性 > < ,升級詳情可看本文最後連接
exact
默認爲false,若是爲true時,須要和路由相同時才能匹配,可是若是有斜槓也是能夠匹配上的。
若是在父路由中加了exact
,是不能匹配子路由的,建議在子路由中加exact
,以下所示java
//父路由 <Switch> <Route path="/a" component={ComponentA} /> </Switch>
//子路由,tuanDetail組件裏 <Switch> <Route path="/a/b" exact component={ComponentB}/> </Switch>
<Route strict path="/one" component={About} />react
strict
默認爲false,若是爲true時,路由後面有斜槓而url中沒有斜槓,是不匹配的git
若是沒有子路由的狀況,建議你們配都加一個exact
;若是有子路由,建議在子路由中加exact
,父路由不加;
而strict
是針對是否有斜槓的,通常能夠忽略不配置。github
原文地址: https://raoenhui.github.io/react/2019/05/04/exact-strict/
https://reacttraining.com/react-router/web/api/Route/exact-bool
https://reacttraining.com/blog/react-router-v5/
Happy coding .. :)web