In this Article, we will see the role of Modules, Controllers, $scope in AngularJS Application.
In previous AngularJS Tutorials Series, We saw
Module: Module in AngularJS applications is a container for controllers, directive, filters, services etc and helps in packaging code as reusable modules.
Creating/Defining a Module:
The first parameter in angular.module() function is the name of the module and the second parameter is an array in which we can add dependencies. Here, we have not added any external modules/Dependencies as we are trying to make this example as simple as possible.
In the above code, We have added a controller with our angular module(i.e. myApp) using Controller method of the module. In Controller method, the first parameter is name of the controller and second is function representing the controller.
$scope acts as a glue between application controller and the view. $scope is dynamically injected into controller's function. We have added some data to $scope properties.
Here, we have added our module and controller in View using ng-App and ng-controller directive of AngularJS.
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Working with Controller</title>
<script src="Script/angular.js"></script>
<script>
// Declare a module
var myApp = angular.module('myApp', []);
//Registering a controller in myApp module
myApp.controller('myController', function ($scope) {
$scope.Name = "Anoop Kumar Sharma";
$scope.Website = "www.ittutorialswithexample.com";
});
</script>
</head>
<body ng-app="myApp">
<div ng-controller="myController">
Name:{{Name}}<br />
Website:{{Website}}
</div>
</body>
</html>
|
Preview:
Example2.html
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Working with Controller</title>
<script src="Script/angular.js"></script>
<script src="Script/controller.js"></script>
</head>
<body ng-app="myApp">
<div ng-controller="myController">
Name:{{Name}}<br />
Website:{{Website}}
</div>
</body>
</html>
|
// Declare a module
var myApp = angular.module('myApp', []);
//Registering a controller in myApp module
myApp.controller('myController', function ($scope) {
$scope.Name = "Anoop Kumar Sharma";
$scope.Website = "www.ittutorialswithexample.com";
});
|
Hope you like it. Thanks.
[Download Source Code via Google Drive]
0 comments:
Post a Comment