如何从以下URL获得access_token
中ng-controller
中$routeParams
的值作为?
http://www.example.com/#/access_token=asdfjaksjdhflanblasdfkjahdloahds
最佳答案
在您的应用程序配置上
App.config(['$routeProvider', function($routeProvider) {
$routeProvider.
when('/:id', {
....
controller: 'DetailsController'
}).
在控制器上使用$ routeParams
.controller("DetailsController", ['$routeParams',function($routeParams){
var id = $routeParams.id; // this name is from config :id
}]);
关于javascript - 从Angular.js中的URL获取路由参数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26100931/