alan89757 / react-router-analysis

react-router使用与源码分析
MIT License
0 stars 0 forks source link

React-Router 4中<Router>组件有几种类型? #5

Open alan89757 opened 3 years ago

alan89757 commented 3 years ago

HashRouter:老浏览器的history,主要通过hash来实现,对应createHashHistory() BrowserRouter:高版本浏览器,通过html5里面的history,对应createBrowserHistory() MemeoryRouter:node环境下,主要存储在memeory里面,对应createMemoryHistory() *createHashHistory、createBrowserHistory、createMemoryHistory方法只是覆盖了某些基础公用方法,比如go(),replace(),push()等。BrowserRouter和HashRouter组件,前者使用pushState和popState事件构建路由,后者使用 hash 和 hashchange 事件构建路由。MemeoryRouter可以应用于像react native。