是什么导致 AngularJS 变量更改触发 html 更新?
What causes AngularJS variable change to fire html update?
我从 AngularJS 上的 W3Schools 教程中得到了这个例子。我做了一个小改动,从绑定复选框跨度的值到使用表达式。我认为待办事项列表不会再更新了。但它仍然如此。是什么导致 ng-repeat
仅仅因为我添加了待办事项而触发?
http://plnkr.co/edit/Kojz2ODWDS8dFDNzjYR5?p=preview
<!DOCTYPE html>
<html>
<script src= "http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
<body ng-app="myApp" ng-controller="todoCtrl">
<h2>My Todo List</h2>
<form ng-submit="todoAdd()">
<input type="text" ng-model="todoInput" size="50" placeholder="Add New">
<input type="submit" value="Add New">
</form>
<br>
<div ng-repeat="x in todoList">
<input type="checkbox" ng-model="x.done"> <span>{{x.todoText}}</span>
</div>
<p><button ng-click="remove()">Remove marked</button></p>
<script>
var app = angular.module('myApp', []);
app.controller('todoCtrl', function($scope) {
$scope.todoList = [{todoText:'Clean House', done:false}];
$scope.todoAdd = function() {
$scope.todoList.push({todoText:$scope.todoInput, done:false});
$scope.todoInput = "";
};
$scope.remove = function() {
var oldList = $scope.todoList;
$scope.todoList = [];
angular.forEach(oldList, function(x) {
if (!x.done) $scope.todoList.push(x);
});
};
});
</script>
</body>
</html>
单击 Add New
按钮提交相应的表单,使用 ng-submit="todoAdd()"
将调用此函数。这又会在您的范围内向 todoList
添加一个条目。由于此数组已被修改,因此触发 angular 摘要循环并更新列表。
对你的问题的一些建议:首先,你指的是 W3Schools,而不是 W3C(这是一个标准化组织,通常不做教程,这就是我好奇的原因 - 另外,你会发现很多原因为什么在 goolgin 周围或查看 meta 时不使用 W3Schools)。此外,如果您与其他代码进行比较,您应该将其包含或至少包含 link。
我通过谷歌搜索找到了它,看来你唯一的改变是使用 <span>{{x.todoText}}</span>
而不是 <span ng-bind="x.todoText"></span>
。这里的摘要周期确实没有区别。唯一的区别是,通过使用 {{}}
,在实际替换变量之前,它可能首先在浏览器中呈现为花括号 window。因此,通常最好使用 ng-bind
.
我从 AngularJS 上的 W3Schools 教程中得到了这个例子。我做了一个小改动,从绑定复选框跨度的值到使用表达式。我认为待办事项列表不会再更新了。但它仍然如此。是什么导致 ng-repeat
仅仅因为我添加了待办事项而触发?
http://plnkr.co/edit/Kojz2ODWDS8dFDNzjYR5?p=preview
<!DOCTYPE html>
<html>
<script src= "http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
<body ng-app="myApp" ng-controller="todoCtrl">
<h2>My Todo List</h2>
<form ng-submit="todoAdd()">
<input type="text" ng-model="todoInput" size="50" placeholder="Add New">
<input type="submit" value="Add New">
</form>
<br>
<div ng-repeat="x in todoList">
<input type="checkbox" ng-model="x.done"> <span>{{x.todoText}}</span>
</div>
<p><button ng-click="remove()">Remove marked</button></p>
<script>
var app = angular.module('myApp', []);
app.controller('todoCtrl', function($scope) {
$scope.todoList = [{todoText:'Clean House', done:false}];
$scope.todoAdd = function() {
$scope.todoList.push({todoText:$scope.todoInput, done:false});
$scope.todoInput = "";
};
$scope.remove = function() {
var oldList = $scope.todoList;
$scope.todoList = [];
angular.forEach(oldList, function(x) {
if (!x.done) $scope.todoList.push(x);
});
};
});
</script>
</body>
</html>
单击 Add New
按钮提交相应的表单,使用 ng-submit="todoAdd()"
将调用此函数。这又会在您的范围内向 todoList
添加一个条目。由于此数组已被修改,因此触发 angular 摘要循环并更新列表。
对你的问题的一些建议:首先,你指的是 W3Schools,而不是 W3C(这是一个标准化组织,通常不做教程,这就是我好奇的原因 - 另外,你会发现很多原因为什么在 goolgin 周围或查看 meta 时不使用 W3Schools)。此外,如果您与其他代码进行比较,您应该将其包含或至少包含 link。
我通过谷歌搜索找到了它,看来你唯一的改变是使用 <span>{{x.todoText}}</span>
而不是 <span ng-bind="x.todoText"></span>
。这里的摘要周期确实没有区别。唯一的区别是,通过使用 {{}}
,在实际替换变量之前,它可能首先在浏览器中呈现为花括号 window。因此,通常最好使用 ng-bind
.