app.controller('YmAspectListCtrl', [ '$rootScope', '$scope', function($rootScope, $scope) { $scope.getEnrolArray = function() { $rootScope.ajaxRequest({ url : '../enrol/std/enrol/list.htm' }, function(response) { if (response.array.length == 1) { $scope.goInfo(response.array[0]); return; } $scope.EnrolArray = response.array; }); } $scope.goInfo = function(enrol) { $rootScope.goLocation('ym/aspect_info/' + enrol.enrol_id); } $scope.getEnrolArray(); } ])