[AngularJS]AngularJs-20140129

$location Service (window.location)

用途: redirect action

path()

使用者可以使用『上一頁』的功能

1
2
3
$location.path(); // 取得目前的路徑

$location.path('path');//改變路徑

replace()

使用者沒有辦法使用『上一頁』

1
2
3
4
5
6
$location.path('path');
$locaton.replace();

// or

$location.path('path').replace()

absUrl()

取得完整的路徑

hash()

取得 # 之後的內容

get/set search part of the current URL

url()

get the URL of the current page