내가 이해하는 바에 따르면 그들은 모두 거의 동일합니다. 주요 차이점은 복잡성입니다. 공급자는 런타임에 구성 할 수 있고 공장은 좀 더 강력하며 서비스는 가장 간단한 형태입니다.
이 질문을 확인하십시오 AngularJS : 서비스 대 공급자 대 공장
또한이 요지 는 미묘한 차이를 이해하는 데 도움 이 될 수 있습니다.
출처 : https://groups.google.com/forum/#!topic/angular/hVrkvaHGOfc
jsFiddle : http://jsfiddle.net/pkozlowski_opensource/PxdSP/14/
저자 : Pawel Kozlowski
var myApp = angular.module('myApp', []);
//service style, probably the simplest one
myApp.service('helloWorldFromService', function() {
this.sayHello = function() {
return "Hello, World!";
};
});
//factory style, more involved but more sophisticated
myApp.factory('helloWorldFromFactory', function() {
return {
sayHello: function() {
return "Hello, World!";
}
};
});
//provider style, full blown, configurable version
myApp.provider('helloWorld', function() {
// In the provider function, you cannot inject any
// service or factory. This can only be done at the
// "$get" method.
this.name = 'Default';
this.$get = function() {
var name = this.name;
return {
sayHello: function() {
return "Hello, " + name + "!";
}
};
};
this.setName = function(name) {
this.name = name;
};
});
//hey, we can configure a provider!
myApp.config(function(helloWorldProvider){
helloWorldProvider.setName('World');
});
function MyCtrl($scope, helloWorld, helloWorldFromFactory, helloWorldFromService) {
$scope.hellos = [
helloWorld.sayHello(),
helloWorldFromFactory.sayHello(),
helloWorldFromService.sayHello()];
}
Factories
(위에 인용 된) 에 대한 대답 이 약간 혼란 스러웠 기 때문에 질문하기 전에 그 질문을 읽었습니다 . 아래 답변 중 일부는Factories
내가 이해할 수있는 것으로 축소 됩니다.