我正在创建一个dataService来处理所有http连接,这是我的代码:
(function(){
angular.module('theswapp')
.factory('dataService',['$http','$q',function($q, $http){
function getTeamCheckInData(){
return $http.get('assets/js/data.json');
}
return {
getTeamCheckInData : getTeamCheckInData
};
}]);
})();
将其注入我的控制器并调用它后,我在返回 $http.get('assets/js/data.json'(;时出现错误。错误说$http.get 不是一个函数
工厂中参数的顺序错误,应该是
angular.module('theswapp')
.factory('dataService',['$http','$q',function($http,$q ){