Home  >  Article  >  Web Front-end  >  Angularjs study notes two-way data binding

Angularjs study notes two-way data binding

高洛峰
高洛峰Original
2016-12-24 10:07:261293browse

This time we will explain in detail the two-way data binding of angular.

1. Simple example

We have already shown this example in the first section. To see it, move here

The effect achieved here is that when you enter content in the input box, the corresponding content will be changed accordingly. . This achieves two-way data binding.

2. The use of value expressions and ng-bind

Let’s look at another example, click here. In the first example that appears in the article, {{greeting.text}} and {{text}} are one Value expression, but if you keep refreshing the page, you will find such a problem, that is, the string "{{greeting.text}} {{text}}" will sometimes appear on the page for a moment, then we should How to solve it?

The ng-bind command is used here: used to bind data expressions.

For example, we can change

{{greeting.text}} {{text}}


to:

"

";


After this correction, the unwanted string will not appear when the page is refreshed.

 But using commands is always less efficient than using expressions directly, so we have summarized a common rule: Generally speaking, index uses ng-bind, and subsequent templates use the form of '{{}}'.

3. Typical scenario of two-way binding - form

First look at the content of a form.html:



 

 
 
 
 

双向数据绑定


Then look at the content of Form.js:

var userInfoModule = angular.module('UserInfoModule', []);
userInfoModule.controller('UserInfoCtrl', ['$scope',
 function($scope) {
  $scope.userInfo = {
   email: "253445528@qq.com",
   password: "253445528",
   autoLogin: true
  };
  $scope.getFormData = function() {
   console.log($scope.userInfo);
  };
  $scope.setFormData = function() {
   $scope.userInfo = {
    email: 'testtest@126.com',
    password: 'testtest',
    autoLogin: false
   }
  };
  $scope.resetForm = function() {
   $scope.userInfo = {
    email: "253445528@qq.com",
    password: "253445528",
    autoLogin: true
   };
  }
 }
])

The function implemented in the above picture is:

   1. Click "Get", you can output three data on the console, email, password and selected status (true, false)

   2. Click "Settings": you can change the values ​​​​of the two input boxes and cancel the check box Selected state;

  3. Click "Reset": the data can be restored to the original data.

 Because the ng-model in the input box and the value in the controller implement two-way binding, changing the value of the input box or changing the value in the controller will change the values ​​of both parties accordingly. Just a few lines of code can achieve such a powerful function. Don’t you think it’s amazing? It’s indeed amazing, but what’s even more amazing is yet to come! continue!

4. Dynamically switch label styles

First look at the content of color.html:



 

  
  

测试CSS样式


Let’s look at line 19: There is a "color" variable in this p tag. When "green" is clicked ”, execute the setGreen function and change the value of “color” to “green”, so the class name is changed, thereby also changing the background color. Using this method, we don't have to directly manipulate the elements, but just add a variable. The code is concise and intuitive.

  Let’s take a look at the content of color.js again:

var myCSSModule = angular.module('MyCSSModule', []);
myCSSModule.controller('CSSCtrl', ['$scope',
  function($scope) {
    $scope.color = "red";
    $scope.setGreen = function() {
      $scope.color = "green";
    }
  }
])


  The default value of the attribute "color" is "red", so it displays red, and when clicked, the function is executed and turns green.

For more angularjs study notes and two-way data binding related articles, please pay attention to the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn