What Controller does from Angular’s Perspective? How to Build a Basic Controller in AngularJS How to Define Methods in AngularJS Controllers AngularJS Controller with ng-Controller Example

What Controller does from Angular’s Perspective?

Following is a simple definition of working of AngularJS Controller:

The controller’s primary responsibility is to control the data which gets passed to the view. The scope and the view have two-way communication. The properties of the view can call “functions” on the scope. Moreover events on the view can call “methods” on the scope. The below code snippet gives a simple example of a function.

The function($scope) which is defined when defining the controller and an internal function which is used to return the concatenation of the $scope.firstName and $scope.lastName. In AngularJS, when you define a function as a variable, it is known as a Method.

Data in this way pass from the controller to the scope, and then the data passes back and forth from the scope to the view. The scope is used to expose the model to the view. The model can be modified via methods defined in the scope which could be triggered via events from the view. We can define two way model binding from the scope to the model. Controllers should not ideally be used for manipulating the DOM. This should be done by the directives which we will see later on. Best practice is to have controller’s based on functionality. For example, if you have a form for input and you need a controller for that, create a controller called “form controller”.

How to Build a Basic Controller in AngularJS

Below are the steps to create a controller in AngularJS: Step 1) Create a basic HTML Page Before we start with the creation of a controller, we need to first have our basic HTML page setup in place. The below code snippet is a simple HTML page which has a title of “Event Registration” and has references to important libraries such as Bootstrap, jquery and Angular.

We are adding references to the bootstrap CSS stylesheets, which will be used in conjunction with the bootstrap libraries. We are adding references to the angularjs libraries. So now whatever we do with angular.js going forward will be referenced from this library. We are adding references to the bootstrap library to make our web page more responsive for certain controls. We have added references to jquery libraries which will be used for DOM manipulation. This is required by Angular because some of the functionality in Angular is dependent on this library.

By default, the above code snippet will be present in all of our examples, so that we can show just the specific angularJS code in the subsequent sections. Step 2) Check the files and file structure Secondly, let’s look at our files and file structure which we are going to start with for the duration of our course.

First we segregate our files into 2 folders as is done with any conventional web application. We have the “CSS” folder. It will contain all our cascading style sheet files, and then we will have our “lib” folder which will have all our JavaScript files. The bootstrap.css file is placed in the CSS folder and it used for adding a good look and feel for our website. The angular.js is our main file which was downloaded from the angularJS site and kept in our lib folder. The app.js file will contain our code for the controllers. The bootstrap.js file is used to supplement the bootstrap.cs file to add bootstrap functionality to our web application. The jquery file will be used to add DOM manipulation functionality to our site.

Step 3) Use AngularJS code to display the output What we want to do here is just to display the words “AngularJS” in both text format and in a text box when the page is viewed in the browser. Let’s see an example on how to use angular.js to do this:

Code Explanation:

The ng-app keyword is used to denote that this application should be considered as an angular application. Anything that starts with the prefix ‘ng’ is known as a directive. “DemoApp” is the name given to our Angular.JS application. We have created a div tag and in this tag we have added an ng-controller directive along with the name of our Controller “DemoController”. This basically makes our div tag the ability to access the contents of the Demo Controller. You need to mention the name of the controller under the directive to ensure that you are able to access the functionality defined within the controller. We are creating a model binding using the ng-model directive. What this does is that it binds the text box for Tutorial Name to be bound to the member variable “tutorialName”. We are creating a member variable called “tutorialName” which will be used to display the information which the user types in the text box for Tutorial Name. We are creating a module which will attach to our DemoApp application. So this module now becomes part of our application. In the module, we define a function which assigns a default value of “AngularJS” to our tutorialName variable.

If the command is executed successfully, the following Output will be shown when you run your code in the browser. Output:

Since we assigned the variable tutorialName a value of “Angular JS”, this gets displayed in the text box and in the plain text line.

How to Define Methods in AngularJS Controllers

Normally, one would want to define multiple methods in the controller to separate the business logic. For example, suppose if you wanted to have your controller do 2 basic things,

Perform the addition of 2 numbers Perform the subtraction of 2 numbers

You would then ideally create 2 methods inside of your controller, one to perform the addition and the other to perform the subtraction. Let’s see a simple example of how you can define custom methods within an Angular.JS controller. The controller will simply return a string.

Code Explanation:

Here, we are just defining a function which returns a string of “AngularJS”. The function is attached to the scope object via a member variable called tutorialName. If the command is executed successfully, the following Output will be shown when you run your code in the browser.

Output:

AngularJS Controller with ng-Controller Example

Let’s look at an example of “HelloWorld” where all of the functionality was placed in a single file. Now it’s time to place the code for the controller in separate files. Let’s follow the steps below to do this: Step 1) In the app.js file, add the following code for your controller

The above code does the following things:

Define a module called “app” which will hold the controller along with the controller functionality. Create a controller with the name “HelloWorldCtrl”. This controller will be used to have a functionality to display a “Hello World” message. The scope object is used to pass information from the controller to the view. So in our case, the scope object will be used to hold a variable called “message”. We are defining the variable message and assigning the value “Hello World” to it.

Step 2) Now, in your Sample.html file add a div class which will contain the ng-controller directive and then add a reference to the member variable “message” Also don’t forget to add a reference to the script file app.js which has the source code for your controller.

If the above code is entered correctly, the following Output will be shown when you run your code in the browser. Output:

Summary:

The controller’s primary responsibility is to create a scope object which in turn gets passed to the view How to build a simple controller using the ng-app, ng-controller and ng-model directives How to add custom methods to a controller which can be used to separate various functionalities within an angularjs module. Controllers can be defined in external files to separate this layer from the View layer. This is normally a best practice when creating web applications.