作为AngularJs的新手无法理解这个问题。
这是一个显示操作的简单示例。实际上大约有50个项目,点击“字符串#”后点击“没有字符串”以便在视觉上删除该项目大约需要1-2秒。
我有控制器代码:
testApp.controller('TestController', ['$scope', function ($scope) {
$scope.category = [
{id:1, name: "Category 1"},
...
];
$scope.items = [
{id: 1, category: {id: 1},name: "Test 1"},
...
];
$scope.list = [
{id: 1,name: "String 1"}
...
];
angular.forEach($scope.category, function(categoryItem, i) {
categoryHash[categoryItem.id] = i;
});
angular.forEach(menuItems, function(item) {
var catCategory = categoryHash[item.category.id];
if (!$scope.category[catCategory].items) {
$scope.category[catCategory].items = [];
}
$scope.category[catCategory].items.push(item);
});
}])
指令代码:
.directive('listItems', function() {
return {
restrict: 'E',
scope: {
listArray: '=',
listItemId: '=',
listFlag: '='
},
template: '<ul>' +
'<li ng-repeat="listStr in listArray track by listStr.id">' +
'<input type="radio" ' +
'id="list_{{ listItemId }}_{{ listStr.id }}" name="list_{{ listItemId }}" ' +
'ng-model="$parent.$parent.item.string" ng-value="listStr" ng-change="stringSelect()">' +
'<label for="list_{{ listItemId }}_{{ listStr.id }}" ng-bind="listStr.name"></label>' +
'</li>' +
'<li>' +
'<input type="radio" ' +
'id="list_{{ listItemId }}_0" name="list_{{ listItemId }}" ' +
'ng-model="$parent.$parent.item.string" ng-value="" ng-change="stringSelect()">' +
'<label for="list_{{ listItemId }}_0">Without string</label>' +
'</li>' +
'</ul>',
link: function(scope, iElement, iAttrs) {
scope.stringSelect = function() {
scope.listFlag = false;
};
}
}
})
模板:
<div ng-app="test" ng-controller="TestController">
<div ng-repeat="collection in category track by $index" >
<h3 ng-bind="collection.name"></h3>
<ul>
<li ng-repeat="item in collection.items track by $index">
<strong ng-bind="item.name"></strong>
<span ng-if="item.string" ng-bind="item.string.name"></span>
<button ng-click="addString = true" ng-hide="addString">Add String</button>
<div ng-if="addString">
<list-items
list-array="list"
list-item-id="$parent.item.id"
list-flag="$parent.addString"></list-items>
</div>
</li>
</ul>
</div>
</div>
答案 0 :(得分:2)
首先删除所有$ parent,他们不需要,angular将在父范围内寻找值,如果你的指令在其他指令中使用,那么这甚至会指向正确的范围。
第二个角度你可以创造很多手表,这可以减慢你的应用程序:
3:您使用的是旧版IE吗?我认为8角非常慢,角度为1.2和范围。
因此,您可能会尝试不使用默认监视数组,而是自己处理它,例如只查看长度。对于{{}}部分,从1.3开始,您可以使用&#39; ::&#39;作为绑定的前缀。拥有一次性约束(https://docs.angularjs.org/#!/guide/expression),这样他就不会注意变化
4:当你使用ng时 - 如果它在不需要时销毁对象并在条件再次为真时重新创建它可能你应该使用ng-show而不是ng-if
<div ng-if="addString">