EVOLUTION-MANAGER
Edit File: $location.html
<a href='https://github.com/angular/angular.js/edit/v1.3.x/docs/content/guide/$location.ngdoc?message=docs(guide%2FUsing $location)%3A%20describe%20your%20change...' class='improve-docs btn btn-primary'><i class="glyphicon glyphicon-edit"> </i>Improve this Doc</a> <h1 id="what-does-it-do-">What does it do?</h1> <p>The <code>$location</code> service parses the URL in the browser address bar (based on <a href="https://developer.mozilla.org/en/window.location"><code>window.location</code></a>) and makes the URL available to your application. Changes to the URL in the address bar are reflected into the <code>$location</code> service and changes to <code>$location</code> are reflected into the browser address bar.</p> <p><strong>The $location service:</strong></p> <ul> <li>Exposes the current URL in the browser address bar, so you can<ul> <li>Watch and observe the URL.</li> <li>Change the URL.</li> </ul> </li> <li>Maintains synchronization between itself and the browser's URL when the user<ul> <li>Changes the address in the browser's address bar.</li> <li>Clicks the back or forward button in the browser (or clicks a History link).</li> <li>Clicks on a link in the page.</li> </ul> </li> <li>Represents the URL object as a set of methods (protocol, host, port, path, search, hash).</li> </ul> <h2 id="comparing-location-to-window-location-">Comparing <code>$location</code> to <code>window.location</code></h2> <table class="table"> <thead> <tr> <th class="empty-corner-lt"></th> <th>window.location</th> <th>$location service</th> </tr> </thead> <tbody> <tr> <td class="head">purpose</td> <td>allow read/write access to the current browser location</td> <td>same</td> </tr> <tr> <td class="head">API</td> <td>exposes "raw" object with properties that can be directly modified</td> <td>exposes jQuery-style getters and setters</td> </tr> <tr> <td class="head">integration with angular application life-cycle</td> <td>none</td> <td>knows about all internal life-cycle phases, integrates with <a href="api/ng/type/$rootScope.Scope#$watch">$watch</a>, ...</td> </tr> <tr> <td class="head">seamless integration with HTML5 API</td> <td>no</td> <td>yes (with a fallback for legacy browsers)</td> </tr> <tr> <td class="head">aware of docroot/context from which the application is loaded</td> <td>no - window.location.pathname returns "/docroot/actual/path"</td> <td>yes - $location.path() returns "/actual/path"</td> </tr> </tbody> </table> <h2 id="when-should-i-use-location-">When should I use <code>$location</code>?</h2> <p>Any time your application needs to react to a change in the current URL or if you want to change the current URL in the browser.</p> <h2 id="what-does-it-not-do-">What does it not do?</h2> <p>It does not cause a full page reload when the browser URL is changed. To reload the page after changing the URL, use the lower-level API, <code>$window.location.href</code>.</p> <h1 id="general-overview-of-the-api">General overview of the API</h1> <p>The <code>$location</code> service can behave differently, depending on the configuration that was provided to it when it was instantiated. The default configuration is suitable for many applications, for others customizing the configuration can enable new features.</p> <p>Once the <code>$location</code> service is instantiated, you can interact with it via jQuery-style getter and setter methods that allow you to get or change the current URL in the browser.</p> <h2 id="-location-service-configuration"><code>$location</code> service configuration</h2> <p>To configure the <code>$location</code> service, retrieve the <a href="api/ng/provider/$locationProvider">$locationProvider</a> and set the parameters as follows:</p> <ul> <li><p><strong>html5Mode(mode)</strong>: {boolean|Object}<br /> <code>true</code> or <code>enabled:true</code> - see HTML5 mode<br /> <code>false</code> or <code>enabled:false</code> - see Hashbang mode<br /> <code>requireBase:true</code> - see Relative links<br /> default: <code>enabled:false</code></p> </li> <li><p><strong>hashPrefix(prefix)</strong>: {string}<br /> prefix used for Hashbang URLs (used in Hashbang mode or in legacy browser in Html5 mode)<br /> default: <code>""</code></p> </li> </ul> <h3 id="example-configuration">Example configuration</h3> <pre><code class="lang-js">$locationProvider.html5Mode(true).hashPrefix('!'); </code></pre> <h2 id="getter-and-setter-methods">Getter and setter methods</h2> <p><code>$location</code> service provides getter methods for read-only parts of the URL (absUrl, protocol, host, port) and getter / setter methods for url, path, search, hash:</p> <pre><code class="lang-js">// get the current path $location.path(); // change the path $location.path('/newValue') </code></pre> <p>All of the setter methods return the same <code>$location</code> object to allow chaining. For example, to change multiple segments in one go, chain setters like this:</p> <pre><code class="lang-js">$location.path('/newValue').search({key: value}); </code></pre> <h2 id="replace-method">Replace method</h2> <p>There is a special <code>replace</code> method which can be used to tell the $location service that the next time the $location service is synced with the browser, the last history record should be replaced instead of creating a new one. This is useful when you want to implement redirection, which would otherwise break the back button (navigating back would retrigger the redirection). To change the current URL without creating a new browser history record you can call:</p> <pre><code class="lang-js">$location.path('/someNewPath'); $location.replace(); // or you can chain these as: $location.path('/someNewPath').replace(); </code></pre> <p>Note that the setters don't update <code>window.location</code> immediately. Instead, the <code>$location</code> service is aware of the <a href="api/ng/type/$rootScope.Scope">scope</a> life-cycle and coalesces multiple <code>$location</code> mutations into one "commit" to the <code>window.location</code> object during the scope <code>$digest</code> phase. Since multiple changes to the $location's state will be pushed to the browser as a single change, it's enough to call the <code>replace()</code> method just once to make the entire "commit" a replace operation rather than an addition to the browser history. Once the browser is updated, the $location service resets the flag set by <code>replace()</code> method and future mutations will create new history records, unless <code>replace()</code> is called again.</p> <h3 id="setters-and-character-encoding">Setters and character encoding</h3> <p>You can pass special characters to <code>$location</code> service and it will encode them according to rules specified in <a href="http://www.ietf.org/rfc/rfc3986.txt">RFC 3986</a>. When you access the methods:</p> <ul> <li>All values that are passed to <code>$location</code> setter methods, <code>path()</code>, <code>search()</code>, <code>hash()</code>, are encoded.</li> <li>Getters (calls to methods without parameters) return decoded values for the following methods <code>path()</code>, <code>search()</code>, <code>hash()</code>.</li> <li>When you call the <code>absUrl()</code> method, the returned value is a full url with its segments encoded.</li> <li>When you call the <code>url()</code> method, the returned value is path, search and hash, in the form <code>/path?search=a&b=c#hash</code>. The segments are encoded as well.</li> </ul> <h1 id="hashbang-and-html5-modes">Hashbang and HTML5 Modes</h1> <p><code>$location</code> service has two configuration modes which control the format of the URL in the browser address bar: <strong>Hashbang mode</strong> (the default) and the <strong>HTML5 mode</strong> which is based on using the HTML5 <a href="http://www.w3.org/TR/html5/introduction.html#history-0">History API</a>. Applications use the same API in both modes and the <code>$location</code> service will work with appropriate URL segments and browser APIs to facilitate the browser URL change and history management.</p> <p><img src="img/guide/hashbang_vs_regular_url.jpg"></p> <table class="table"> <thead> <tr> <th class="empty-corner-lt"></th> <th>Hashbang mode</th> <th>HTML5 mode</th> </tr> </thead> <tbody> <tr> <td class="head">configuration</td> <td>the default</td> <td>{ html5Mode: true }</td> </tr> <tr> <td class="head">URL format</td> <td>hashbang URLs in all browsers</td> <td>regular URLs in modern browser, hashbang URLs in old browser</td> </tr> <tr> <td class="head"><a href=""> link rewriting</td> <td>no</td> <td>yes</td> </tr> <tr> <td class="head">requires server-side configuration</td> <td>no</td> <td>yes</td> </tr> </tbody> </table> <h2 id="hashbang-mode-default-mode-">Hashbang mode (default mode)</h2> <p>In this mode, <code>$location</code> uses Hashbang URLs in all browsers. Angular also does not intercept and rewrite links in this mode. I.e. links work as expected and also perform full page reloads when other parts of the url than the hash fragment was changed.</p> <h3 id="example">Example</h3> <pre><code class="lang-js">it('should show example', inject( function($locationProvider) { $locationProvider.html5Mode(false); $locationProvider.hashPrefix('!'); }, function($location) { // open http://example.com/base/index.html#!/a $location.absUrl() == 'http://example.com/base/index.html#!/a' $location.path() == '/a' $location.path('/foo') $location.absUrl() == 'http://example.com/base/index.html#!/foo' $location.search() == {} $location.search({a: 'b', c: true}); $location.absUrl() == 'http://example.com/base/index.html#!/foo?a=b&c' $location.path('/new').search('x=y'); $location.absUrl() == 'http://example.com/base/index.html#!/new?x=y' } )); </code></pre> <h2 id="html5-mode">HTML5 mode</h2> <p>In HTML5 mode, the <code>$location</code> service getters and setters interact with the browser URL address through the HTML5 history API. This allows for use of regular URL path and search segments, instead of their hashbang equivalents. If the HTML5 History API is not supported by a browser, the <code>$location</code> service will fall back to using the hashbang URLs automatically. This frees you from having to worry about whether the browser displaying your app supports the history API or not; the <code>$location</code> service transparently uses the best available option.</p> <ul> <li>Opening a regular URL in a legacy browser -> redirects to a hashbang URL</li> <li>Opening hashbang URL in a modern browser -> rewrites to a regular URL</li> </ul> <p>Note that in this mode, Angular intercepts all links (subject to the "Html link rewriting" rules below) and updates the url in a way that never performs a full page reload.</p> <h3 id="example">Example</h3> <pre><code class="lang-js">it('should show example', inject( function($locationProvider) { $locationProvider.html5Mode(true); $locationProvider.hashPrefix('!'); }, function($location) { // in browser with HTML5 history support: // open http://example.com/#!/a -> rewrite to http://example.com/a // (replacing the http://example.com/#!/a history record) $location.path() == '/a' $location.path('/foo'); $location.absUrl() == 'http://example.com/foo' $location.search() == {} $location.search({a: 'b', c: true}); $location.absUrl() == 'http://example.com/foo?a=b&c' $location.path('/new').search('x=y'); $location.url() == 'new?x=y' $location.absUrl() == 'http://example.com/new?x=y' // in browser without html5 history support: // open http://example.com/new?x=y -> redirect to http://example.com/#!/new?x=y // (again replacing the http://example.com/new?x=y history item) $location.path() == '/new' $location.search() == {x: 'y'} $location.path('/foo/bar'); $location.path() == '/foo/bar' $location.url() == '/foo/bar?x=y' $location.absUrl() == 'http://example.com/#!/foo/bar?x=y' } )); </code></pre> <h3 id="fallback-for-legacy-browsers">Fallback for legacy browsers</h3> <p>For browsers that support the HTML5 history API, <code>$location</code> uses the HTML5 history API to write path and search. If the history API is not supported by a browser, <code>$location</code> supplies a Hasbang URL. This frees you from having to worry about whether the browser viewing your app supports the history API or not; the <code>$location</code> service makes this transparent to you.</p> <h3 id="html-link-rewriting">Html link rewriting</h3> <p>When you use HTML5 history API mode, you will not need special hashbang links. All you have to do is specify regular URL links, such as: <code><a href="/some?foo=bar">link</a></code></p> <p>When a user clicks on this link,</p> <ul> <li>In a legacy browser, the URL changes to <code>/index.html#!/some?foo=bar</code></li> <li>In a modern browser, the URL changes to <code>/some?foo=bar</code></li> </ul> <p>In cases like the following, links are not rewritten; instead, the browser will perform a full page reload to the original link.</p> <ul> <li>Links that contain <code>target</code> element<br> Example: <code><a href="/ext/link?a=b" target="_self">link</a></code></li> <li>Absolute links that go to a different domain<br> Example: <code><a href="http://angularjs.org/">link</a></code></li> <li>Links starting with '/' that lead to a different base path<br> Example: <code><a href="/not-my-base/link">link</a></code></li> </ul> <h3 id="relative-links">Relative links</h3> <p>Be sure to check all relative links, images, scripts etc. Angular requires you to specify the url base in the head of your main html file (<code><base href="/my-base"></code>) unless <code>html5Mode.requireBase</code> is set to <code>false</code> in the html5Mode definition object passed to <code>$locationProvider.html5Mode()</code>. With that, relative urls will always be resolved to this base url, even if the initial url of the document was different.</p> <p>There is one exception: Links that only contain a hash fragment (e.g. <code><a href="#target"></code>) will only change <code>$location.hash()</code> and not modify the url otherwise. This is useful for scrolling to anchors on the same page without needing to know on which page the user currently is.</p> <h3 id="server-side">Server side</h3> <p>Using this mode requires URL rewriting on server side, basically you have to rewrite all your links to entry point of your application (e.g. index.html). Requiring a <code><base></code> tag is also important for this case, as it allows Angular to differentiate between the part of the url that is the application base and the path that should be handled by the application.</p> <h3 id="sending-links-among-different-browsers">Sending links among different browsers</h3> <p>Because of rewriting capability in HTML5 mode, your users will be able to open regular url links in legacy browsers and hashbang links in modern browser:</p> <ul> <li>Modern browser will rewrite hashbang URLs to regular URLs.</li> <li>Older browsers will redirect regular URLs to hashbang URLs.</li> </ul> <h3 id="example">Example</h3> <p>Here you can see two <code>$location</code> instances, both in <strong>Html5 mode</strong>, but on different browsers, so that you can see the differences. These <code>$location</code> services are connected to a fake browsers. Each input represents the address bar of the browser.</p> <p>Note that when you type hashbang url into first browser (or vice versa) it doesn't rewrite / redirect to regular / hashbang url, as this conversion happens only during parsing the initial URL = on page reload.</p> <p>In these examples we use <code><base href="/base/index.html" /></code></p> <h4 id="browser-in-html5-mode">Browser in HTML5 mode</h4> <p> <div> <a ng-click="openPlunkr('examples/example-location-html5-mode')" class="btn pull-right"> <i class="glyphicon glyphicon-edit"> </i> Edit in Plunker</a> <div class="runnable-example" path="examples/example-location-html5-mode" module="html5-mode" name="location-html5-mode"> <div class="runnable-example-file" name="index.html" language="html" type="html"> <pre><code><div ng-controller="LocationController"> <div ng-address-bar></div><br><br> <div> $location.protocol() = <span ng-bind="$location.protocol()"></span> <br> $location.host() = <span ng-bind="$location.host()"></span> <br> $location.port() = <span ng-bind="$location.port()"></span> <br> $location.path() = <span ng-bind="$location.path()"></span> <br> $location.search() = <span ng-bind="$location.search()"></span> <br> $location.hash() = <span ng-bind="$location.hash()"></span> <br> </div> <div id="navigation"> <a href="http://www.example.com/base/first?a=b">/base/first?a=b</a> | <a href="http://www.example.com/base/sec/ond?flag#hash">sec/ond?flag#hash</a> | <a href="/other-base/another?search">external</a> </div> </div></code></pre> </div> <div class="runnable-example-file" name="app.js" language="js" type="js"> <pre><code>angular.module('html5-mode', ['fake-browser', 'address-bar']) .constant('initUrl', 'http://www.example.com/base/path?a=b#h') .constant('baseHref', '/base/index.html') .value('$sniffer', { history: true }) .controller("LocationController", function($scope, $location) { $scope.$location = {}; angular.forEach("protocol host port path search hash".split(" "), function(method){ $scope.$location[method] = function(){ var result = $location[method].call($location); return angular.isObject(result) ? angular.toJson(result) : result; }; }); }) .config(function($locationProvider) { $locationProvider.html5Mode(true).hashPrefix('!'); }) .run(function($rootElement) { $rootElement.on('click', function(e) { e.stopPropagation(); }); });</code></pre> </div> <div class="runnable-example-file" name="fakeBrowser.js" language="js" type="js"> <pre><code>angular.module('fake-browser', []) .config(function($provide) { $provide.decorator('$browser', function($delegate, baseHref, initUrl) { $delegate.onUrlChange = function(fn) { this.urlChange = fn; }; $delegate.url = function() { return initUrl; }; $delegate.defer = function(fn, delay) { setTimeout(function() { fn(); }, delay || 0); }; $delegate.baseHref = function() { return baseHref; }; return $delegate; }); });</code></pre> </div> <div class="runnable-example-file" name="addressBar.js" language="js" type="js"> <pre><code>angular.module('address-bar', []) .directive('ngAddressBar', function($browser, $timeout) { return { template: 'Address: <input id="addressBar" type="text" style="width: 400px" >', link: function(scope, element, attrs){ var input = element.children("input"), delay; input.on('keypress keyup keydown', function(event) { delay = (!delay ? $timeout(fireUrlChange, 250) : null); event.stopPropagation(); }) .val($browser.url()); $browser.url = function(url) { return url ? input.val(url) : input.val(); }; function fireUrlChange() { delay = null; $browser.urlChange(input.val()); } } }; });</code></pre> </div> <div class="runnable-example-file" name="protractor.js" type="protractor" language="js"> <pre><code>var addressBar = element(by.css("#addressBar")), url = 'http://www.example.com/base/path?a=b#h'; it("should show fake browser info on load", function(){ expect(addressBar.getAttribute('value')).toBe(url); expect(element(by.binding('$location.protocol()')).getText()).toBe('http'); expect(element(by.binding('$location.host()')).getText()).toBe('www.example.com'); expect(element(by.binding('$location.port()')).getText()).toBe('80'); expect(element(by.binding('$location.path()')).getText()).toBe('/path'); expect(element(by.binding('$location.search()')).getText()).toBe('{"a":"b"}'); expect(element(by.binding('$location.hash()')).getText()).toBe('h'); }); it("should change $location accordingly", function(){ var navigation = element.all(by.css("#navigation a")); navigation.get(0).click(); expect(addressBar.getAttribute('value')).toBe("http://www.example.com/base/first?a=b"); expect(element(by.binding('$location.protocol()')).getText()).toBe('http'); expect(element(by.binding('$location.host()')).getText()).toBe('www.example.com'); expect(element(by.binding('$location.port()')).getText()).toBe('80'); expect(element(by.binding('$location.path()')).getText()).toBe('/first'); expect(element(by.binding('$location.search()')).getText()).toBe('{"a":"b"}'); expect(element(by.binding('$location.hash()')).getText()).toBe(''); navigation.get(1).click(); expect(addressBar.getAttribute('value')).toBe("http://www.example.com/base/sec/ond?flag#hash"); expect(element(by.binding('$location.protocol()')).getText()).toBe('http'); expect(element(by.binding('$location.host()')).getText()).toBe('www.example.com'); expect(element(by.binding('$location.port()')).getText()).toBe('80'); expect(element(by.binding('$location.path()')).getText()).toBe('/sec/ond'); expect(element(by.binding('$location.search()')).getText()).toBe('{"flag":true}'); expect(element(by.binding('$location.hash()')).getText()).toBe('hash'); });</code></pre> </div> <iframe class="runnable-example-frame" src="examples/example-location-html5-mode/index.html" name="example-location-html5-mode"></iframe> </div> </div> </p> <h4 id="browser-in-html5-fallback-mode-hashbang-mode-">Browser in HTML5 Fallback mode (Hashbang mode)</h4> <p> <div> <a ng-click="openPlunkr('examples/example-location-hashbang-mode')" class="btn pull-right"> <i class="glyphicon glyphicon-edit"> </i> Edit in Plunker</a> <div class="runnable-example" path="examples/example-location-hashbang-mode" module="hashbang-mode" name="location-hashbang-mode"> <div class="runnable-example-file" name="index.html" language="html" type="html"> <pre><code><div ng-controller="LocationController"> <div ng-address-bar></div><br><br> <div> $location.protocol() = <span ng-bind="$location.protocol()"></span> <br> $location.host() = <span ng-bind="$location.host()"></span> <br> $location.port() = <span ng-bind="$location.port()"></span> <br> $location.path() = <span ng-bind="$location.path()"></span> <br> $location.search() = <span ng-bind="$location.search()"></span> <br> $location.hash() = <span ng-bind="$location.hash()"></span> <br> </div> <div id="navigation"> <a href="http://www.example.com/base/first?a=b">/base/first?a=b</a> | <a href="http://www.example.com/base/sec/ond?flag#hash">sec/ond?flag#hash</a> | <a href="/other-base/another?search">external</a> </div> </div></code></pre> </div> <div class="runnable-example-file" name="app.js" language="js" type="js"> <pre><code>angular.module('hashbang-mode', ['fake-browser', 'address-bar']) .constant('initUrl', 'http://www.example.com/base/index.html#!/path?a=b#h') .constant('baseHref', '/base/index.html') .value('$sniffer', { history: false }) .config(function($locationProvider) { $locationProvider.html5Mode(true).hashPrefix('!'); }) .controller("LocationController", function($scope, $location) { $scope.$location = {}; angular.forEach("protocol host port path search hash".split(" "), function(method){ $scope.$location[method] = function(){ var result = $location[method].call($location); return angular.isObject(result) ? angular.toJson(result) : result; }; }); }) .run(function($rootElement) { $rootElement.on('click', function(e) { e.stopPropagation(); }); });</code></pre> </div> <div class="runnable-example-file" name="fakeBrowser.js" language="js" type="js"> <pre><code>angular.module('fake-browser', []) .config(function($provide) { $provide.decorator('$browser', function($delegate, baseHref, initUrl) { $delegate.onUrlChange = function(fn) { this.urlChange = fn; }; $delegate.url = function() { return initUrl; }; $delegate.defer = function(fn, delay) { setTimeout(function() { fn(); }, delay || 0); }; $delegate.baseHref = function() { return baseHref; }; return $delegate; }); });</code></pre> </div> <div class="runnable-example-file" name="addressBar.js" language="js" type="js"> <pre><code>angular.module('address-bar', []) .directive('ngAddressBar', function($browser, $timeout) { return { template: 'Address: <input id="addressBar" type="text" style="width: 400px" >', link: function(scope, element, attrs){ var input = element.children("input"), delay; input.on('keypress keyup keydown', function(event) { delay = (!delay ? $timeout(fireUrlChange, 250) : null); event.stopPropagation(); }) .val($browser.url()); $browser.url = function(url) { return url ? input.val(url) : input.val(); }; function fireUrlChange() { delay = null; $browser.urlChange(input.val()); } } }; });</code></pre> </div> <div class="runnable-example-file" name="protractor.js" type="protractor" language="js"> <pre><code>var addressBar = element(by.css("#addressBar")), url = 'http://www.example.com/base/index.html#!/path?a=b#h'; it("should show fake browser info on load", function(){ expect(addressBar.getAttribute('value')).toBe(url); expect(element(by.binding('$location.protocol()')).getText()).toBe('http'); expect(element(by.binding('$location.host()')).getText()).toBe('www.example.com'); expect(element(by.binding('$location.port()')).getText()).toBe('80'); expect(element(by.binding('$location.path()')).getText()).toBe('/path'); expect(element(by.binding('$location.search()')).getText()).toBe('{"a":"b"}'); expect(element(by.binding('$location.hash()')).getText()).toBe('h'); }); it("should change $location accordingly", function(){ var navigation = element.all(by.css("#navigation a")); navigation.get(0).click(); expect(addressBar.getAttribute('value')).toBe("http://www.example.com/base/index.html#!/first?a=b"); expect(element(by.binding('$location.protocol()')).getText()).toBe('http'); expect(element(by.binding('$location.host()')).getText()).toBe('www.example.com'); expect(element(by.binding('$location.port()')).getText()).toBe('80'); expect(element(by.binding('$location.path()')).getText()).toBe('/first'); expect(element(by.binding('$location.search()')).getText()).toBe('{"a":"b"}'); expect(element(by.binding('$location.hash()')).getText()).toBe(''); navigation.get(1).click(); expect(addressBar.getAttribute('value')).toBe("http://www.example.com/base/index.html#!/sec/ond?flag#hash"); expect(element(by.binding('$location.protocol()')).getText()).toBe('http'); expect(element(by.binding('$location.host()')).getText()).toBe('www.example.com'); expect(element(by.binding('$location.port()')).getText()).toBe('80'); expect(element(by.binding('$location.path()')).getText()).toBe('/sec/ond'); expect(element(by.binding('$location.search()')).getText()).toBe('{"flag":true}'); expect(element(by.binding('$location.hash()')).getText()).toBe('hash'); });</code></pre> </div> <iframe class="runnable-example-frame" src="examples/example-location-hashbang-mode/index.html" name="example-location-hashbang-mode"></iframe> </div> </div> </p> <h1 id="caveats">Caveats</h1> <h2 id="page-reload-navigation">Page reload navigation</h2> <p>The <code>$location</code> service allows you to change only the URL; it does not allow you to reload the page. When you need to change the URL and reload the page or navigate to a different page, please use a lower level API, <a href="api/ng/service/$window">$window.location.href</a>.</p> <h2 id="using-location-outside-of-the-scope-life-cycle">Using $location outside of the scope life-cycle</h2> <p><code>$location</code> knows about Angular's <a href="api/ng/type/$rootScope.Scope">scope</a> life-cycle. When a URL changes in the browser it updates the <code>$location</code> and calls <code>$apply</code> so that all <a href="api/ng/type/$rootScope.Scope#$watch">$watchers</a> / <a href="api/ng/type/$compile.directive.Attributes#$observe">$observers</a> are notified. When you change the <code>$location</code> inside the <code>$digest</code> phase everything is ok; <code>$location</code> will propagate this change into browser and will notify all the <a href="api/ng/type/$rootScope.Scope#$watch">$watchers</a> / <a href="api/ng/type/$compile.directive.Attributes#$observe">$observers</a>. When you want to change the <code>$location</code> from outside Angular (for example, through a DOM Event or during testing) - you must call <code>$apply</code> to propagate the changes.</p> <h2 id="-location-path-and-or-prefixes">$location.path() and ! or / prefixes</h2> <p>A path should always begin with forward slash (<code>/</code>); the <code>$location.path()</code> setter will add the forward slash if it is missing.</p> <p>Note that the <code>!</code> prefix in the hashbang mode is not part of <code>$location.path()</code>; it is actually hashPrefix.</p> <h2 id="crawling-your-app">Crawling your app</h2> <p>To allow indexing of your AJAX application, you have to add special meta tag in the head section of your document:</p> <pre><code class="lang-html"><meta name="fragment" content="!" /> </code></pre> <p>This will cause crawler bot to request links with <code>_escaped_fragment_</code> param so that your server can recognize the crawler and serve a HTML snapshots. For more information about this technique, see <a href="http://code.google.com/web/ajaxcrawling/docs/specification.html">Making AJAX Applications Crawlable</a>.</p> <h1 id="testing-with-the-location-service">Testing with the $location service</h1> <p>When using <code>$location</code> service during testing, you are outside of the angular's <a href="api/ng/type/$rootScope.Scope">scope</a> life-cycle. This means it's your responsibility to call <code>scope.$apply()</code>.</p> <pre><code class="lang-js">describe('serviceUnderTest', function() { beforeEach(module(function($provide) { $provide.factory('serviceUnderTest', function($location){ // whatever it does... }); }); it('should...', inject(function($location, $rootScope, serviceUnderTest) { $location.path('/new/path'); $rootScope.$apply(); // test whatever the service should do... })); }); </code></pre> <h1 id="migrating-from-earlier-angularjs-releases">Migrating from earlier AngularJS releases</h1> <p>In earlier releases of Angular, <code>$location</code> used <code>hashPath</code> or <code>hashSearch</code> to process path and search methods. With this release, the <code>$location</code> service processes path and search methods and then uses the information it obtains to compose hashbang URLs (such as <code>http://server.com/#!/path?search=a</code>), when necessary.</p> <h2 id="changes-to-your-code">Changes to your code</h2> <table class="table"> <thead> <tr class="head"> <th>Navigation inside the app</th> <th>Change to</th> </tr> </thead> <tbody> <tr> <td>$location.href = value<br />$location.hash = value<br />$location.update(value)<br />$location.updateHash(value)</td> <td>$location.path(path).search(search)</td> </tr> <tr> <td>$location.hashPath = path</td> <td>$location.path(path)</td> </tr> <tr> <td>$location.hashSearch = search</td> <td>$location.search(search)</td> </tr> <tr class="head"> <td>Navigation outside the app</td> <td>Use lower level API</td> </tr> <tr> <td>$location.href = value<br />$location.update(value)</td> <td>$window.location.href = value</td> </tr> <tr> <td>$location[protocol | host | port | path | search]</td> <td>$window.location[protocol | host | port | path | search]</td> </tr> <tr class="head"> <td>Read access</td> <td>Change to</td> </tr> <tr> <td>$location.hashPath</td> <td>$location.path()</td> </tr> <tr> <td>$location.hashSearch</td> <td>$location.search()</td> </tr> <tr> <td>$location.href<br />$location.protocol<br />$location.host<br />$location.port<br />$location.hash</td> <td>$location.absUrl()<br />$location.protocol()<br />$location.host()<br />$location.port()<br />$location.path() + $location.search()</td> </tr> <tr> <td>$location.path<br />$location.search</td> <td>$window.location.path<br />$window.location.search</td> </tr> </tbody> </table> <h2 id="two-way-binding-to-location">Two-way binding to $location</h2> <p>Because <code>$location</code> uses getters/setters, you can use <code>ng-model-options="{ getterSetter: true }"</code> to bind it to <code>ngModel</code>:</p> <p> <div> <a ng-click="openPlunkr('examples/example-example')" class="btn pull-right"> <i class="glyphicon glyphicon-edit"> </i> Edit in Plunker</a> <div class="runnable-example" path="examples/example-example" module="locationExample"> <div class="runnable-example-file" name="index.html" language="html" type="html"> <pre><code><div ng-controller="LocationController"> <input type="text" ng-model="locationPath" ng-model-options="{ getterSetter: true }" /> </div></code></pre> </div> <div class="runnable-example-file" name="script.js" language="js" type="js"> <pre><code>angular.module('locationExample', []) .controller('LocationController', ['$scope', '$location', function($scope, $location) { $scope.locationPath = function (newLocation) { return $location.path(newLocation); }; }]);</code></pre> </div> <iframe class="runnable-example-frame" src="examples/example-example/index.html" name="example-example"></iframe> </div> </div> </p> <h1 id="related-api">Related API</h1> <ul> <li><a href="api/ng/service/$location"><code>$location</code> API</a></li> </ul>