双向绑定
AngularJS在$scope变量中使用脏值检测来实现了数据双向绑定。
Scope作用:
1.通过数据共享连接Controller和View
2.事件的监听和响应
3.脏值检测和数据绑定
双向数据绑定最经常的应用场景就是表单了,这样当用户在前端页面完成输入后,不用任何操作,我们就已经拿到了用户的数据存放到数据模型中了。因为输入框中的ng-model和控制器中的数值实现了双向绑定,所以更改输入框的值或者更改控制器中的值,都会相应的更改双方的值。$scope对象,我们可以理解为NG框架中的一个作用域对象, 在该作用域内可以做到数据和视图的相互绑定,同时又能与其他$scope对象的作用域隔离开来。
当然,$scope也可以实现继承, 在一个controller里面的作用域可以继承它上一级的scope这样就不是独立存在了。
脏值检测
$watch:AngularJS会首先将你在{{ }}中声明的表达式编译成函数并调用$watch方法。$watch方法为当前scope注册了一个watcher,这个watcher会被保存到一个scope内部维护的数组中。
一个购物车的例子
<span style="font-family:Microsoft YaHei;font-size:18px;"><!DOCTYPE html> <html ng-app="mymodule"> <head> <Meta charset="utf-8"> <link rel="stylesheet" href="css/bootstrap.min.css"> </head> <body> <div class="panel panel-default panel-primary"> <div class="panel-heading">我的购物车</div> <div class="panel-body"> <!--ng-repeat ng-click --> <!--scope注册了一个watcher--> <!-- 1.AngularJS会首先将你在{{ }}中声明的表达式编译成函数并调用$watch方法 --> <!-- 2.$watch方法的第一个参数是一个函数,它通常被称为watch函数,它的返回值声明需要监听的变量;第二个参数是listener,在变量发生改变的时候会被调用。--> <table ng-controller="CartController" class="table table-bordered"> <tr> <th>序号</th> <th>商品</th> <th>单价</th> <th>数量</th> <th>金额</th> <th>操作</th> </tr> <tr ng-repeat="item in items"> <td>{{$index + 1}}</td> <td>{{item.name}}</td> <td>{{item.price | currency}}</td> <!--filter应用--> <td><input ng-model="item.quantity"></td> <td>{{item.quantity * item.price | currency}}</td> <td> <button ng-click="remove($index)">Remove</button> </td> </tr> </table> </div> </div> </body> <script src="js/angular-1.3.0.js"></script> <script src="ng-repeat.js"></script> <script src="js/jquery.js"></script> <script src="js/bootstrap.min.js"></script> </html></span>
<span style="font-family:Microsoft YaHei;font-size:18px;">jS中代码:</span>
<span style="font-family:Microsoft YaHei;font-size:18px;">var mymodule=angular.module('mymodule',[]); mymodule.controller('CartController',['$scope',function CartController($scope) { $scope.items = [ {name: "Angular应用",quantity: 1,price: 199.00},{name: "Angular入门",price: 139.00},{name: "AngularJS权威教程",quantity: 2,price: 84.20} ]; //直接绑定事件remove $scope.remove = function (index) { $scope.items.splice(index,1); } } ]) </span>