I'd like to read the values of URL query parameters using AngularJS. I'm accessing the HTML with the following URL:
http://127.0.0.1:8080/test.html?target=bob
As expected, location.search
is "?target=bob"
.
For accessing the value of target, I've found various examples listed on the web, but none of them work in AngularJS 1.0.0rc10. In particular, the following are all undefined
:
$location.search.target
$location.search['target']
$location.search()['target']
Anyone know what will work? (I'm using $location
as a parameter to my controller)
Update:
I've posted a solution below, but I'm not entirely satisfied with it.
The documentation at Developer Guide: Angular Services: Using $location states the following about $location
:
When should I use $location?
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.
For my scenario, my page will be opened from an external webpage with a query parameter, so I'm not "reacting to a change in the current URL" per se. So maybe $location
isn't the right tool for the job (for the ugly details, see my answer below). I've therefore changed the title of this question from "How to read query parameters in AngularJS using $location?" to "What's the most concise way to read query parameters in AngularJS?". Obviously I could just use javascript and regular expression to parse location.search
, but going that low-level for something so basic really offends my programmer sensibilities.
So: is there a better way to use $location
than I do in my answer, or is there a concise alternate?
It can be done by two ways:
$routeParams
Best and recommended solution is to use
$routeParams
into your controller. It Requires thengRoute
module to be installed.$location.search()
.There is a caveat here. It will work only with HTML5 mode. By default, it does not work for the URL which does not have hash(
#
) in ithttp://localhost/test?param1=abc¶m2=def
You can make it work by adding
#/
in the URL.http://localhost/test#/?param1=abc¶m2=def
$location.search()
to return an object like:Just a precision to Ellis Whitehead's answer.
$locationProvider.html5Mode(true);
won't work with new version of angularjs without specifying the base URL for the application with a<base href="">
tag or setting the parameterrequireBase
tofalse
From the doc :
Just to summerize .
If your app is being loaded from external links then angular wont detect this as a URL change so $loaction.search() would give you an empty object . To solve this you need to set following in your app config(app.js)
$location.search() will work only with HTML5 mode turned on and only on supporting browser.
This will work always:
$window.location.search
It's a bit late, but I think your problem was your URL. If instead of
you had
I'm pretty sure it would have worked. Angular is really picky about its #/