Reputation: 1251
I am having the url as follows:
http://test.com/#/mya/classified/42/
How can I fetch 42 from this usl in angularjs? Is there any way in angularjs $location to fetch the same?.
Upvotes: 1
Views: 91
Reputation: 473863
This is what $stateParams
service is for:
myApp.controller('MyCtrl', ['$scope', '$stateParams',
function ($scope, $stateParams) {
console.log($stateParams.id);
}]);
Upvotes: 4