私が理解していることから、それらはすべてほぼ同じです。主な違いはそれらの複雑さです。プロバイダーは実行時に構成可能で、ファクトリーはもう少し堅牢で、サービスは最も単純な形式です。
この質問をチェックしてくださいAngularJS:サービスvsプロバイダーvsファクトリー
また、この要点は微妙な違いを理解するのに役立ちます。
出典:https : //groups.google.com/forum/#!topic / angular / hVrkvaHGOfc
jsFiddle:http ://jsfiddle.net/pkozlowski_opensource/PxdSP/14/
著者:パヴェルコズロウスキ
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
私が理解できるものでさえ、何かに還元されます