$location
(service in module ng
)
The $location service parses the URL in the browser address bar (based on the window.location) and makes the URL available to your application. Changes to the URL in the address bar are reflected into $location service and changes to $location are reflected into the browser address bar.
The $location service:
For more information see Developer Guide: Angular Services: Using $location
This method is getter only.
Return full url representation with all segments encoded according to rules specified in RFC 3986.
{string}
– full url
This method is getter / setter.
Return hash fragment when called without any parameter.
Change hash fragment when called with parameter and return $location
.
hash(optional) – {string=} –
New hash fragment
{string}
– hash
This method is getter only.
Return host of current url.
{string}
– host of current url.
This method is getter / setter.
Return path of current url when called without any parameter.
Change path when called with parameter and return $location
.
Note: Path should always begin with forward slash (/), this method will add the forward slash if it is missing.
path(optional) – {string=} –
New path
{string}
– path
This method is getter only.
Return port of current url.
{Number}
– port
This method is getter only.
Return protocol of current url.
{string}
– protocol of current url
If called, all changes to $location during current $digest
will be replacing current history
record, instead of adding new one.
This method is getter / setter.
Return search part (as object) of current url when called without any parameter.
Change search part when called with parameter and return $location
.
search(optional) – {string|object<string,string>=} –
New search params - string or hash object
paramValue(optional) – {string=} –
If search
is a string, then paramValue
will override only a
single search parameter. If the value is null
, the parameter will be deleted.
{string}
– search
This method is getter / setter.
Return url (e.g. /path?a=b#hash
) when called without any parameter.
Change path, search and hash, when called with parameter and return $location
.
url(optional) – {string=} –
New url without base prefix (e.g. /path?a=b#hash
)
{string}
– url