1. 程式人生 > >Angular 通過注入 $location 獲取與修改當前頁面URL

Angular 通過注入 $location 獲取與修改當前頁面URL

以下獲取與修改的 URL 以  ( http://172.16.0.88:8100/#/homePage?id=10&a=100  ) 為例

【一】獲取 (不修改URL)

       //1.獲取當前完整的url路徑
       var absurl = $location.absUrl();
       //http://172.16.0.88:8100/#/homePage?id=10&a=100

       //2. 獲取當前url路徑(當前url#後面的內容,包括引數和雜湊值):
        var url = $location.url();
        // 結果:/homePage?id=10&a=100
        

        //3. 獲取當前url的子路徑(也就是當前url#後面的內容,不包括引數)
       var pathUrl = $location.path()
       //結果:/homePage
       
       
       //4.獲取當前url的協議(比如http,https)
       var protocol = $location.protocol();
       //結果:http
       

       //5.獲取主機名
       var localhost = $location.host();
       //結果:172.16.0.88
       

       //6.獲取當前url的埠
       var port = $location.port();
       //結果:8100
    

       //7.獲取當前url的雜湊值
       var hash = $location.hash()
       //結果:http://172.16.088
        

        //8.獲取當前url的引數的序列化json物件
        var search = $location.search();
        //結果:{id: "10", a: "100"}

【二】修改 (改變URL相關內容)

        //1 修改url的子路徑部分(也就是當前url#後面的內容,不包括引數):
         $location.url('/validation');
        //結果:http://172.16.0.88:8100/#/validation

         //2 修改url的雜湊值部分
        $location.hash('myhash3');
        //結果:http://172.16.0.88:8100/#/homePage?id=10&a=100#myhash3

        //3 修改url的引數部分(第一個引數表示url引數的屬性名,第二個引數是該屬性名的屬性值,如果是已有屬性名,則修改,如果不是已有屬性,則新增)
        $location.search('id','111')
        // 結果(修改引數值):http://172.16.0.88:8100/#/homePage?id=111&a=100

        $location.search('ids','111')
        // 結果(新增ids引數): http://172.16.0.88:8100/#/homePage?id=111&a=100&ids=111

        //4.一次性修改多個引數
        $location.search({id:'55','a':'66'})
        //結果:http://172.16.0.88:8100/#/homePage?id=55&a=66#myhash3

         //5.第一個值表示url引數的屬性名,如果是已有屬性名,則刪除該屬性,如果不是已有屬性,那就等於沒改過
         $location.search('age',null)
【三】修改URL但不存入歷史記錄
            

           在上面的修改url的方法的時候,每修改一次,url都會被存入歷史記錄,可以使用後退按鈕回到修改前的url,如果不想要這種效果,而僅僅是替換當前的記錄,可以使用  $location.path('/validation').replace();