我正要把头撞到墙上。我以为我了解了角度的工作原理(过滤器也是)。但我只是找不到关于我的过滤器的问题。它会导致 infdig。我什至不改变过滤器中的源数组。
(function () {
angular.module('project.filters').filter('splitListFilter', function () {
return function (data, chunk) {
if(!data || data.length === 0){
return data;
}
var resultArray = [];
for (var i = 0, j = data.length; i < j; i += chunk) {
resultArray.push(data.slice(i, i + chunk));
}
return resultArray;
};
});
})();
我有需要将数据拆分为 x 列的列表。用limitTo解决起来很复杂。
(limitTo: $index*x | limitTo: $last ? -z : -x)
它会导致一个脏模板文件。所以我决定创建一个过滤器,将数组拆分为组。
[1,2,3,4,5,6,7,8] -> [[1,2,3],[4,5,6],[7,8]]
所以我可以很容易地在我的模板中使用它。
你能帮我了解一下这个过滤器中导致 infdig 的原因吗?
编辑:错误消息本身看起来很奇怪,其中一些数字没有出现在代码中的任何位置,可以在http://plnkr.co/edit/pV1gkp0o5KeimwPlEMlF看到
达到 10 次 $digest() 迭代。中止!观察者在最后 5 次迭代中触发:[[{"msg":"fn:regularInterceptedExpression","newVal":23,"oldVal":20}],[{"msg":"fn:regularInterceptedExpression","newVal" :26,"oldVal":23}],[{"msg":"fn:regularInterceptedExpression","newVal":29,"oldVal":26}],[{"msg":"fn:regularInterceptedExpression"," newVal":32,"oldVal":29}],[{"msg":"fn:regularInterceptedExpression","newVal":35,"oldVal":32}]]
HTML 模板
<div class="row" ng-repeat="chunk in docProfile.SysMedicalInterests | splitListFilter: 3">
<div class="col-md-4" ng-repeat="medInterest in chunk">
<label style="font-weight:normal;">
<input type="checkbox" value="{{medInterest.ID}}" ng-click="docProfile.saveInterest(medInterest.ID)" ng-checked="docProfile.isMedChecked(medInterest.ID)"> {{medInterest.Name}}
</label>
</div>
</div>
控制器代码
var me = this;
me['SysMedicalInterests'] = null;
var loadMedicalInterests = function(){
var postData = { 'Data': me['data']['subData'] };
return docService.loadMedicalInterests(postData).then(function(resp) {
me['SysMedicalInterests'] = resp['data'];
}, function(){});
};
loadMedicalInterests();
所以数组以空引用开始并从服务器加载数据。更改数组会导致第二次过滤器运行。但在那之后它并没有停止
编辑:这里是 plunkr http://plnkr.co/edit/OmHQ62VgiCXeVzKa5qjz?p=preview
编辑: https ://stackoverflow.com/a/21653981/1666060 上的相关答案,但这仍然不能解释内置过滤器的角度。
这里是 angularjs limitTo 过滤源代码
https://github.com/angular/angular.js/blob/master/src/ng/filter/limitTo.js#L3