AngularJS的$location使用方法详解
更新时间:2017年10月19日 14:48:27 作者:柳絮飞祭奠
这篇文章主要介绍了AngularJS的$location使用方法详解的相关资料,希望通过本文大家能够掌握这部分内容,需要的朋友可以参考下
AngularJS的$location使用方法详解
一、配置config
app.config([ '$locationProvider', function($locationProvider) {
$locationProvider.html5Mode({
//设置为html5Mode(模式),当为false时为Hashbang模式
enabled : true,
//是否需要加入base标签,这里设置为false,设置为true时,需在html的head配置<base href="" />标签
requireBase : false
});
} ]);
注意:config里面的配置非常重要,不配置获取不到url里面的参数
二、基本用法
url:http://127.0.0.1:7001/liuxu/pages/main.html?name=5 1.获取绝对路径 $location.absUrl(); //url:http://127.0.0.1:7001/liuxu/pages/main.html?name=5 2.获取主机 $location.host(); http://127.0.0.1 3.获取端口号 $location.port(); //7001 4.获取文本传输协议 $location.protocol(); http 5. 获取url参数 $location.search().name或者$location.search()['name'] //5 6.获取url $location.url() //:/liuxu/pages/main.html?name=5
如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
相关文章
angularJs使用ng-repeat遍历后选中某一个的方法
今天小编就为大家分享一篇angularJs使用ng-repeat遍历后选中某一个的方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧2018-09-09
angularJS自定义directive之带参方法传递详解
今天小编就为大家分享一篇angularJS自定义directive之带参方法传递详解,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧2018-10-10
AngularJs $parse、$eval和$observe、$watch详解
这篇文章主要介绍了AngularJs $parse、$eval和$observe、$watch的相关资料,需要的朋友可以参考下2016-09-09


最新评论