A <Router> that uses the HTML5 history API (pushState, replaceState and the popstate event) to keep your UI in sync with the URL.(通过监听路由来保持 ui 与 url 一致)
basename:The base URL for all locations. 当 app 属于一个子路径时使用,前面需加 “/”。
getUserConfirmation:传函数,A function to use to confirm navigation. Defaults to using window.confirm。
forceRefresh:true 时,he router will use full page refreshes on page navigation. 浏览器不支持 HTML5 history API 才使用
keylength:location.key 的长度
children:只能包含一个节点
2、<HashRouter> 通过监听 hash 变化来更新页面
网友评论