Riyas TK
Riyas TK

Reputation: 1251

How to get value from url in angularjs

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

Answers (1)

alecxe
alecxe

Reputation: 473863

This is what $stateParams service is for:

myApp.controller('MyCtrl', ['$scope', '$stateParams',
    function ($scope, $stateParams) {
        console.log($stateParams.id);
}]);

Upvotes: 4

Related Questions