这期内容当中小编将会给大家带来有关HashRouter和BrowserRouter怎么在react-router中使用,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。
HashRouter
//react-router要求只只有一个字节点 //router内部的Link和Route会一一匹配,匹配到则加载对应的组件 //to 和 Route 的path是一样的(除了/结尾) //比如点击关于我们to="/aboutUs"对应path="/aboutUs/",这样它就去加载AboutUs这个组件,其他组件没加载 //相比用state和回调实现,这种方式更为简单明了,而且浏览前进后退功能都支持 <HashRouter> <div id="wrapper"> <Header /> <ul className="nav navbar-nav"> <li><Link to="/">首页</Link></li> <li><Link to="/classifiedDisplay">分类展示</Link></li> <li><Link to="/boutiqueCase">精品案例</Link></li> <li><Link to="/aboutUs">关于我们</Link></li> </ul> <Route exact path="/" component={Home}/> <Route exact path="/classifiedDisplay/" component={TypeShow}/> <Route exact path="/boutiqueCase/" component={JpShow}/> <Route exact path="/aboutUs/" component={AboutUs}/> <Footer /> </div> </HashRouter>
BrowserRouter
前端
同上方代码,只是把HashRouter换成了BrowserRouter组件。
以apache为例,.htaccess添加重写规则。(需先开启可重写设置)
#配和react-router,自行忽略写的比较low的正则 RewriteEngine on RewriteRule classifiedDisplay$ http://www.yangqingcheng.xin/ RewriteRule boutiqueCase$ http://www.yangqingcheng.xin/ RewriteRule aboutUs$ http://www.yangqingcheng.xin/
上述就是小编为大家分享的HashRouter和BrowserRouter怎么在react-router中使用了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。