本文主要介紹了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
相關建議:
Nginx location語法設定詳解location的意思 $location location重訂、
angular中使用路由和$location切換視圖_AngularJS
#高效利用Angular內建服務$http、$location等_AngularJS
以上是AngularJS的$location使用方法分享的詳細內容。更多資訊請關注PHP中文網其他相關文章!