Should I use factory or service for fetching data in AngularJS?
This question already has an answer here:
I thought I'd elaborate a bit in a real answer. I believe the differences between a service and a factory are so subtle it doesn't really matter.
However, you stated that you know what a factory is and what a service is in design patterns. I thought I would elaborate on that a bit because I think that factory and service--as applied to AngularJS--are a bit misleading.
First, the Factory design pattern is, basically, an object that creates other objects. However, when you create a factory in AngularJS; you do not use that factory to create other objects. The object returned from an Angular Factory is a Singleton and only one object will ever be returned when you access that factory. So, an Angular factory does not have the same meaning as "Factory" that I have used in the passed. In fact, when you create an Angular factory, you are responsible for creating the object, within the factory function. Once the object is created, the same object is always returned. So an Angular Factory does not even create a new object even once. It is nothing like a factory as I understood them from other languages.
A Service design pattern is really just a fancy way to organize different functionality so that it is separate from them. Back when I Was in school we just called this 'encapsulation' and I don't think of it as a design pattern. Both the AngularJS Service and the AngularJS Factory can you help you do this.
The Angular Service is also a singleton, but the first time that service is referenced, it will call 'new' on the object in question. That means that the service creates a new object--so the AngularJS Service is more like a Factory than the AngularJS Factory. An Angular service is still a singleton, so once the object is created, the same object will always be returned.
For all practical purposes, I use a service. They seem to be easier to set up. But the differences appear to be very subtle.
Okay, let's add some elaboration on how factories and services work.
Say, you have en object created like this:
MyObject - function MyObject(){
foo : "bar";
}
This object exists outside of AngularJS and could be used in any JavaScript. If you want to use it with a factory; you would do something like this:
MyApp.factory('MyObjectFactory', function(){
return new MyObject();
});
Notice I had to manually call the new MyObject() fucntion to create a new object in the factory function. I could have also returned an existing object, like this:
MyApp.factory('MyObjectFactory', function(){
return MyObject;
});
Now, you want to pass it into a controller like this:
function MyController($scope, MyObjectFactory) {}
Angular finds the argument into the controller and looks for MyObjectFactory. It if it not yet instantiated, then the factory function is called, and the results are returned. The results are cached, so every time Angular needs to reference MyObjectFactory it will return the same object that was created the first time. The returned object in a Singleton and this is how you can share the same object between different controllers.
The key point here is that the factory function is executed once; on first access of the factory. It is not used to manage the creation of multiple objects of the same type.
A service out of the same object may be created like this:
MyApp.service('MyObjectService', MyObject);
And passed into the same controller, like this:
function MyController($scope, MyObjectFactory, MyObjectService) {}
When Angular needs to reference the MyObjectService for the first time, it will execute "new MyObject()" and return that object. The object is cached and every time MyObjectService is needed, the same object is returned.
After this creation process, it is identical in usage to an AngularJS Factory. It is a singleton object, and you can use it to share data, or functionality between controllers.
So, in the short, when using a Service a new instance of your object is automatically created. When using a Factory, whatever object is returned from your factory function is returned.
Under the hood, both Service and Factory use a provider. With a service the factory function is provided for you. With a factory, you can make the function anything you want.
链接地址: http://www.djcxy.com/p/77536.html