浅谈react-router HashRouter和BrowserRouter的使用
程序员文章站
2022-10-19 08:13:46
官网推荐的是browserrouter,但是此方式需要服务器配合,而且有点不好的是重定向只能到首页,无法停留在当前页,具体用法很简单,举例说明。
hashrouter...
官网推荐的是browserrouter,但是此方式需要服务器配合,而且有点不好的是重定向只能到首页,无法停留在当前页,具体用法很简单,举例说明。
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/
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 自己动手改造ADSL
推荐阅读
-
浅谈sql语句中GROUP BY 和 HAVING的使用方法
-
浅谈JavaScript中的apply/call/bind和this的使用
-
浅谈js使用in和hasOwnProperty获取对象属性的区别
-
浅谈Matplotlib简介和pyplot的简单使用——文本标注和箭头
-
浅谈react-router HashRouter和BrowserRouter的使用
-
浅谈vuex之mutation和action的基本使用
-
浅谈webpack-dev-server的配置和使用
-
浅谈go-restful框架的使用和实现
-
浅谈Spring中@Import注解的作用和使用
-
浅谈linux中sed命令和awk命令的使用