在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:route.js开源软件地址:https://gitee.com/diqye/route.js开源软件介绍:引入文件说明项目中不使用ramda 引入一个文件 <script type="text/javascript" src="../dist/route.all.min.js"></script> 使用ramda 引入三个文件<script src="../lib/ramda.min.js"></script><script src="../lib/jueji.js"></script><script src="../js/route.js"></script> 浏览器路由匹配
var s = J.stream;var ds = J.dostream;var dofn = route.route([ s(route.nameP("/hello"),domlog) ,s(route.nameP("/"),domlog) ,s(route.paramP("/:a/:b"),domlog) ,s(route.nameP("/hello"),domlog) ,s(route.startP("/yibu"),R.tap(loadState),yibutest,domlog) ,s(diyP,domlog) ,domlog404]);dofn("/hello"); 自动监控浏览器#(hash)发生变化//监控hash变化 获取URL执行dofnds(null,route.hashMilldam,dofn); 自动监控H5路由//利用H5 api改变URL 放入浏览器历史记录//需要引入文件 /js/h5routeMilldam.jsds(null,h5r.h5routeMilldam,dofn); 详见demo 在线demo |
请发表评论