简体   繁体   中英

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?.

This is what $stateParams service is for:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM