Angular.js Service and Factory

Posted by: Mahesh Sabnis , on 2/11/2016, in Category AngularJS
Views: 27322
Abstract: Understanding Angular.js services and factories, its differences and which one should you use.

Angular.js is a MVC based JavaScript framework which provides client-side modularity using Angular components like Module, Controller, Services, Factory etc. A Module is an entry point to the Angular application, whereas the Controller contains objects which are used to bind with the View using Angular Directives.

For Services, the general assumption is that if one or more angular controllers wants to access data from an external REST service or a Web API, then we use an Angular service. Let’s see some specifications of using Angular Service and Factory.

 

Angular.js Service

Here are some specifications of the Angular Service object:

- These are substitutable objects that are wired together using dependency injection.

- This is a constructor function which creates an object using new keyword.

- They are lazily instantiated instances, this means that angular will only instantiate a service when the component is dependent on it.

- This can be injected in the angular controller. Each component dependent on the service gets reference to the single instance generated by service factory.

- This is used for containing simple logic which we want to share across all controllers.

- This acts as a reusable component in the client-side code.

- This does not return anything.

The following is the syntax of the Angular Service

 var app = angular.module('mymodule',[]);

app.service('crudserv', function ($http) {

    this.getEmployees = function () {
  
    };

    this.post = function (employee) {
         
    };

    this.put = function (id,employee) {
        var promise = $http({
 
    };

    this.delete = function (id) {
 
    };
});

- The service defines all functions and properties using this

- When the service name is declared as injectable argument to the component, is it provided with an instance of the function. It is just like declaring an instance using new keyword.

 

Angular.js Factory

Here are some specifications of the Angular Factory object:

- This is an object declaration with properties and functions. This is like declaring a function returning value.

- When the factory is passed to the controller, all properties and functions are available in that controller.

- Factory is reusable component with all its contents (functions, properties, etc.)

- This is Singleton and be created only once.

- This is the most suitable and recommended component to share data across controllers.

- Factory can have other dependencies e.g. other factories.

- Factory can be used as a Service when we need a single repository to place complex logic in it.

The syntax is as follows:

var app = angular.module('mymodule',[]);

app.factory('testfact', function () {
    return {
        value:0
    }
});

The factory object returns an object.

The advantage of using factory is that, we can have typical coding style of declaring private and public functions like a class. So we can hide a specific functionality form direct access from the injectable components.

One major difference between Angular.js  Service and Factory is a Service is a constructor function, whereas a Factory is not. If we use service() or factory(), internally a factory always gets called which in turn creates a provider for our service.

Whether to use Factory or Service is purely a coding standard choice. A Factory is more preferred because of its class like definition whereas Service are used when we are using ES6 classes or when we plan to migrate to ES6.

To learn more, check out our AngularJS Tutorials and CheatSheets.

This article has been editorially reviewed by Suprotim Agarwal.

Absolutely Awesome Book on C# and .NET

C# and .NET have been around for a very long time, but their constant growth means there’s always more to learn.

We at DotNetCurry are very excited to announce The Absolutely Awesome Book on C# and .NET. This is a 500 pages concise technical eBook available in PDF, ePub (iPad), and Mobi (Kindle).

Organized around concepts, this Book aims to provide a concise, yet solid foundation in C# and .NET, covering C# 6.0, C# 7.0 and .NET Core, with chapters on the latest .NET Core 3.0, .NET Standard and C# 8.0 (final release) too. Use these concepts to deepen your existing knowledge of C# and .NET, to have a solid grasp of the latest in C# and .NET OR to crack your next .NET Interview.

Click here to Explore the Table of Contents or Download Sample Chapters!

What Others Are Reading!
Was this article worth reading? Share it with fellow developers too. Thanks!
Share on LinkedIn
Share on Google+

Author
Mahesh Sabnis is a DotNetCurry author and a Microsoft MVP having over two decades of experience in IT education and development. He is a Microsoft Certified Trainer (MCT) since 2005 and has conducted various Corporate Training programs for .NET Technologies (all versions), and Front-end technologies like Angular and React. Follow him on twitter @maheshdotnet or connect with him on LinkedIn


Page copy protected against web site content infringement 	by Copyscape




Feedback - Leave us some adulation, criticism and everything in between!