I'm tring to get a GET var from the url using Angular $location.search() but it didn't work.
This is the code:
var app = angular.module('myApp',[]);
app.controller('odinvite', function ($scope, $location)
{
//$scope.mytry = 5;
$scope.mytry =$location.search().username;
}
);
What's the problem? There is other way besides?
thanks!
EDIT -
I tried to add manually hash to the url like this - "mydomain.com/foo.php#?username=7" and it worked!
But I don't to add hash every time and I want the $location to grab it automatically.
I also tried to add this -
app.config(['$locationProvider', function($locationProvider) {
$locationProvider.html5Mode(true);
}]);
to solve it but it gave me an error -
Error: [$location:nobase] http://errors.angularjs.org/1.4.8/$location/nobase
at angular.js:38
at hf.$get (angular.js:12196)
at Object.e [as invoke] (angular.js:4523)
at angular.js:4340
at d (angular.js:4482)
at Object.e [as invoke] (angular.js:4514)
at M.instance (angular.js:9182)
at D (angular.js:8299)
at g (angular.js:7731)
at angular.js:7611
(anonymous) @ angular.js:12520
(anonymous) @ angular.js:9292
$apply @ angular.js:16157
(anonymous) @ angular.js:1679
e @ angular.js:4523
c @ angular.js:1677
yc @ angular.js:1697
Zd @ angular.js:1591
(anonymous) @ angular.js:29013
b @ angular.js:3057
If @ angular.js:3346
d @ angular.js:3334