我在我的角度应用程序中有这个作为 serices.js
angular.module('services', [])
.factory('studentService', ['$http', function($http){
return{
getStudentDetail: function(callback, pid){
$http.get('/api/student/'+pid+'/?format=json').success(function(data) {
// prepare data here
callback(data);
});
}
};
}]);
这是在我的控制器中
studentService.getStudentDetail(function(data, pid){
$scope.student = data;
});