我被告知我们使用工厂/服务来消除重复编码。这是代码的一部分,它工作正常。
app.controller('ServicesCtrl',['$scope','DataFactory',function($scope,$http,DataFactory){
DataFactory.GetData('services1.json')
.then(function(response){
$scope.returnedData = response.data;
})
.catch(function(response){
console.log('Error in process',response.status,response.data);
});
}]);
app.controller('ContactCtrl',['$scope','DataFactory', function($scope,DataFactory){
DataFactory.GetData('location.json')
.then(function(response){
$scope.returnedData = response.data;
})
.catch(function(response){
console.log('Error in process',response.status,response.data);
});
}]);
app.factory('DataFactory',['$http',function($http){
var factory = {};
factory.GetData = function(path) {
return $http.get(path);
}
return factory;
}]);
我的问题是 1. 当我们必须处理控制器内部的承诺时,为什么要使用服务/工厂来进行这样的 ajax 调用?我的意思是,我必须在这里的两个控制器中进行相同的 .then 和 .catch 调用。它的效率在哪里?有没有更好的方法来做到这一点?还是我做错了?是否可以在工厂内部处理这些承诺并将 response.data 返回给不同的控制器?