Understanding Dependency Injection in Angular JS View Article Information Posted Date: 1. January 2017 Author: Anil Sharma Categories: Dependency Injection, Angular JS Keywords: Dependency Injection in Angular JS, $scope component, AngularJS features, Using $scope in angular js Even if you have encountered dependency injection in other frameworks like ASP.NET MVC, AngularJS takes an unusual approach and mixes in some features that are distinct from other languages. As you will learn an AngularJS application consists of different components: controllers, directives, filters, and so on [Continue Reading]
Defining Controllers in Angular JS Application View Article Information Posted Date: 1. January 2017 Author: Anil Sharma Categories: Angular JS Keywords: Controllers in Angular JS, $scope in angular js, Dependency Injection in Angular JS, dependency injection Tutorials Controllers are one of the most important building blocks of an AngularJS application, and they act as a channel between the model and the views. When we are developing a big Angular JS Application, we have to works with multiple controllers, each of which delivers the data and logic required for one aspect of the application. We can define a Controllers are using the Module.controller method, which takes two arguments: the name of the controller and a factory function, which is used to set up the controller and get it ready for use [Continue Reading]