React-Router 雜記

菜的黑人牙膏發表於2019-02-12

三種Router的區別

1. HashRouter: 即對應url中的hash值,如xx.com/#/a、xx.com/#/a/b, 伺服器對任務url都返回同一個url,具體的路徑由瀏覽器區分,因為瀏覽器不會傳送hash後面的值給伺服器。  
2. BrowserRouter:如果是BrowseRouter即url變成這樣,xx.com/a、xx.com/a/b, 所以要對伺服器配置不同的url返回不同的資源。
3. MemoryRouter: 就是沒有URL的情況,比如(React Native)。
複製程式碼

react-router的哲學
github.com/rccoder/blo…

1. 動態路由,每一個route都是一個元件,更好的配合React  
2. 路由巢狀
複製程式碼

react-router和redux問題
有時候,當location改變,元件並沒有更新(子路由元件或者activity link),主要是因為:

1.元件直接通過redux的connect  
2.該元件不是路由元件,也就是沒有這樣的程式碼
複製程式碼
 <Route component={SomeConnectedThing}/>
複製程式碼

原因是redux內部實現了shouldComponentUpdate,但又沒有從react-router接收到props,意味著不會改變。解決辦法:

// before
export default connect(mapStateToProps)(Something)

// after
import { withRouter } from 'react-router-dom'
export default withRouter(connect(mapStateToProps)(Something))
複製程式碼