Understanding The Controllers - Part 4

This article explains the controller with a sample application and the usage of controller is also discussed here. In my previous article, we saw what is the difference between AngularJS and other JavaScript frameworks. Here are the series of article written on AngularJS,

Controllers

A controller is a set of JavaScript function which is bound to a specified scope. The ng-controller directive, Angular will instantiate the new controller object, and injects the new scope as a dependency. It contains business logic for the view and avoid using to manipulate the DOM.

Figure 1: Controller

Controller Rules

  • We can use controller to set up the initial state of the scope object and add behavior to that object.
  • We do not use controller to manipulate DOM. It should contain only business logic and can use data binding and directives for the DOM manipulation.
  • We do not use controllers to format input but can use angular from controls instead of that.
  • We do not use filter output but can use angular filters instead of that.
  • We do not use controllers to share code or state across controllers but can use angular services instead of that.
  • We do not manage the life-cycle of other components.
Creating a Controller
  • Requires ng-controller directive.
  • Add controller code to a module.
  • Name your controller based on functionality.
  • Controller are named using camel case (i.e. SimpleController).
  • Setup the initial state of the scope object.
When you have create an AngularJS sample application in AngularJs. Firstly, you need to initialize state of the scope object and associate the properties to the scope object in Angular. It is provided in build directive to use ng-controller directive in the AngularJS application.

ng-Controller directive

ng-Controller directive is an associated a controller class to the view.

How to use ng-Controller

  1. <Any   
  2.   
  3. ng-Controller=”expression”>  
  4.   
  5. </Any>  
  1. <div ng-app="mainApp" ng-controller="SimpleController">  
  2.   
  3.  </div>  

Step 1:

Open Visual Studio 2015 and go to file menu and point the new and then click new project. New ASP.NET project window will open, you can select a ASP.NET Web Application and Type Project Name AngularJsControllerDemo, Choose the project location path and then click OK button.

New ASP.NET project window will open, you can select a Empty Template with No Authentication and then click OK button.

 
 
Go to Solution Explorer and right click the project name and then click Manage NuGet Packages.
 
 
 
NuGet Package Manager window will open and you can type AngularJS and browse. Also select AngularJS.Core and click Install button.
 


Preview window will open and you can see the AngularJS version installing details and click OK button. After it is successfully installed in AngularJS, you can see the following,
 
 
You can see AngularJsControllerDemo project structure as in the following screenshot.
 


Add SimpleController.html

Go to Solution Explorer and right click the project name and point Add then click the HTML Page. You can type the item name SimpleController.html and click OK button.

Add SimpleController.js

Go to Solution Explorer and right click the Controller folder name and point Add then click the JavaScript file. You can type the item name SimpleController.js and click OK button.

Step 2: SimpleController.html code here,

  1. <!DOCTYPE html>  
  2. <html>  
  3. <head>  
  4.     <title> San2debug.net | AngularJs Controller Application Demo</title>  
  5.     <meta charset="utf-8" />  
  6.     <script src="Scripts/angular.min.js"></script>  
  7.     <script src="Controller/SimpleController.js"></script>  
  8.   
  9. </head>  
  10. <body>  
  11.     <h2>AngularJs Controller Application Demo</h2>  
  12.     <div ng-app="mainApp" ng-controller="SimpleController">  
  13.         First Name: <input type="text" ng-model="employee.firstName" /><br /><br />  
  14.         Last Name:  <input type="text" ng-model="employee.lastName" /><br /><br />  
  15.         <hr />                                                                  
  16.         <div>  
  17.            <strong>Employee Full Name</strong> : {{employee.fullName()}}  
  18.         </div>  
  19.     </div>    
  20. </body>  
  21. </html>  

SimpleController.js code here,

  1. var mainApp = angular.module("mainApp", []);  
  2.   
  3. mainApp.controller("SimpleController"function ($scope) {  
  4.     $scope.employee = {  
  5.   
  6.         firstName: "Santhakumar",  
  7.         lastName: "Munuswamy",  
  8.   
  9.         fullName: function () {  
  10.               
  11.             var employee;  
  12.             employee = $scope.employee;  
  13.             return employee.firstName + " " + employee.lastName;  
  14.   
  15.         }              
  16.   
  17.     };  
  18. })  
MultipleController.html code here,
  1. <!DOCTYPE html>  
  2. <html>  
  3. <head>  
  4.     <title>San2debug.net | AngularJs Controller Application Demo</title>  
  5.     <meta charset="utf-8" />  
  6.     <link rel="stylesheet" href="Style/Style.css" />  
  7.     <script src="Scripts/angular.min.js"></script>  
  8.       
  9.     <script src="Controller/MultipleController.js"></script>  
  10. </head>  
  11. <body ng-app="mainApp">  
  12.     <div class="main">  
  13.         <div ng-controller="MultipleController" >  
  14.             <p>{{name}}</p>  
  15.             <div ng-controller="ChildController">  
  16.                 <p>{{name}}</p>  
  17.                 <div ng-controller="ParentChildController">  
  18.                     <p>{{name}}</p>  
  19.                 </div>  
  20.             </div>              
  21.         </div>  
  22.     </div>  
  23. </body>  
  24. </html>  
MultipleController.js code here, 
  1. var mainApp = angular.module("mainApp", []);  
  2.   
  3. mainApp.controller("MultipleController"function ($scope) {  
  4.   
  5.     $scope.name = "Welcome Microsoft";  
  6.   
  7. });  
  8.   
  9. mainApp.controller("ChildController"function ($scope) {  
  10.   
  11.     $scope.name = "Welcome C# Corner";  
  12.   
  13. });  
  14.   
  15. mainApp.controller("ParentChildController"function ($scope) {  
  16.   
  17.     $scope.name = "Welcome San2debug.net";  
  18.   
  19. });  
Steps 3: AngularJS Controller Application demo output as in the following screenshot,

 
 

Conclusion:

This article helps you to understand the Controller with a sample application using Visual Studio 2015. Thank you for reading my articles. Kindly share your comments or suggestion. 


Similar Articles