- Angular JS Tutorial
- AngularJS Home
- AngularJS Introduction
- AngularJS Expressions
- AngularJS Directives
- AngularJS Modules
- AngularJS Controllers
- AngularJS Scopes
- AngularJS Data Binding
- AngularJS Services
- AngularJS HTTP
- AngularJS Filters
- AngularJS Forms
- AngularJS Validation
- AngularJS DOM Manipulation
- AngularJS Select
- AngularJS Tables
- AngularJS Events
- AngularJS Routing
- AngularJS Includes
- AngularJS Animations
- AngularJS Dependency Injection
- AngularJS API
- AngularJS Deployment
AngularJS Data Binding
AngularJS Data Binding is one of the most powerful features of AngularJS, allowing synchronization between the view (HTML) and the model (JavaScript variables). With data binding, any changes in the model are immediately reflected in the view and vice versa.
Types of Data Binding
1. One-Way Data Binding
- Data flows in one direction: from the model to the view.
- Updates in the model automatically reflect in the view, but changes in the view do not affect the model.
- Example:
<p>{{ message }}</p>
$scope.message = "Hello, AngularJS!";
Example: One-Way Data Binding with Expressions
<!DOCTYPE html>
<html>
<head>
<title>One-Way Data Binding Example</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script>
</head>
<body ng-app="myApp" ng-controller="myController">
<h1>{{ message }}</h1>
<p ng-bind="message"></p>
<script>
var app = angular.module('myApp', []);
app.controller('myController', function($scope) {
$scope.message = "Hello, One-Way Data Binding!";
});
</script>
</body>
</html>
- In this example, {{ message }} and ng-bind="message" both perform one-way data binding. They display the value of the $scope.message variable in the view.
2. Two-Way Data Binding
- Data flows in both directions: from the model to the view and from the view to the model.
- Changes in the view update the model, and changes in the model update the view.
- Achieved using directives like
ng-model
. - Example:
<input type="text" ng-model="name">
<p>Hello, {{ name }}!</p>
Example: Two-Way Data Binding with ng-model
<!DOCTYPE html>
<html>
<head>
<title>Two-Way Data Binding Example</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script>
</head>
<body ng-app="myApp" ng-controller="myController">
<input type="text" ng-model="message">
<p>{{ message }}</p>
<script>
var app = angular.module('myApp', []);
app.controller('myController', function($scope) {
$scope.message = "Hello, Two-Way Data Binding!";
});
</script>
</body>
</html>
- In this example, the <input> element is bound to the $scope.message variable using ng-model. Changes in the input field are reflected in the paragraph ({{ message }}), and changes in the $scope.message variables are reflected in the input field.
Directives for Data Binding
1. ng-bind
- Binds the value of an expression to an HTML element.
- Example:
<p ng-bind="message"></p>
$scope.message = "This is ng-bind!";
2. ng-model
- Binds form input elements (like text boxes, checkboxes) to scope variables.
- Example:
<input type="text" ng-model="username">
<p>Username: {{ username }}</p>
3. ng-init
- Initializes variables in the scope for data binding.
- Example:
<p ng-init="count=10">Count: {{ count }}</p>
Expression Binding
- AngularJS uses curly braces
{{ }}
to bind data in the view. - Example:
<p>The current time is: {{ new Date() }}</p>
Advantages of AngularJS Data Binding
- Real-Time Updates: Keeps the view and model in sync automatically.
- Reduced Boilerplate Code: Eliminates the need to manually update DOM elements.
- Improved User Experience: Changes reflect instantly without page reloads.
Summary
AngularJS Data Binding simplifies the synchronization between the view and model, enabling developers to build dynamic and interactive web applications effortlessly. Whether it's one-way or two-way data binding, AngularJS ensures seamless updates between the user interface and application data.