溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何在Angular中使用$location獲取地址欄的參數(shù)

發(fā)布時間:2021-02-05 17:28:22 來源:億速云 閱讀:316 作者:Leah 欄目:web開發(fā)

這篇文章將為大家詳細(xì)講解有關(guān)如何在Angular中使用$location獲取地址欄的參數(shù),文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。

1.獲取當(dāng)前完整的url路徑

var absurl = $location.absUrl(); //http://88:8100/#/homePage?id=10&a=100

2. 獲取當(dāng)前url路徑(當(dāng)前url#后面的內(nèi)容,包括參數(shù)和哈希值)

var url = $location.url(); // /homePage?id=10&a=100

3. 獲取當(dāng)前url的子路徑(也就是當(dāng)前url#后面的內(nèi)容,不包括參數(shù))

var pathUrl = $location.path() ///homePage

4.獲取當(dāng)前url的協(xié)議(比如http,https)

var protocol = $location.protocol(); //http

5.獲取主機名

var localhost = $location.host(); //88

6.獲取當(dāng)前url的端口

var port = $location.port(); //8100

7.獲取當(dāng)前url的哈希值

var hash = $location.hash() //http://088

8.獲取當(dāng)前url的參數(shù)的序列化json對象

var search = $location.search(); //{id: "10", a: "100"}

9. 獲取url參數(shù)

$location.search().name;

$location.search()['name'];

10.注意問題

如果是這樣的地址:http://lele.sina.com?name=haha

需要在項目中注入$locationProvider服務(wù)

var searchApp = angular.module('searchApp', []);

searchApp.config(['$locationProvider', function($locationProvider) {

$locationProvider.html5Mode(true);

}]);

searchApp.controller('MainCtrl', ['$scope', '$location', function($scope, $location) {

if ($location.search().keyword) {

$scope.keyword = $location.search().keyword;

}
}]);

11.js中獲取地址欄參數(shù)的方法(附加)

url = https://www.baidu.com/s?ie=utf-8&f=3&rsv_bp=1&rsv_idx=2&tn=baiduhome_pg&wd=%E5%A8%83%E5%93%88%E5%93%88
console.log(window.location.href ); // "https://www.baidu.com/s?ie=utf-8&f=3&rsv_bp=1&rsv_idx=2&tn=baiduhome_pg&wd=%E5%A8%83%E5%93%88%E5%93%88"
console.log(window.location.host); // "www.baidu.com"
console.log(window.location.pathname); // "/s"
console.log(window.location.protocol); // "https:"
console.log(window.location.search); // "?ie=utf-8&f=3&rsv_bp=1&rsv_idx=2&tn=baiduhome_pg&wd=%E5%A8%83%E5%93%88%E5%93%88"

關(guān)于如何在Angular中使用$location獲取地址欄的參數(shù)就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI