gpt4 book ai didi

javascript - AngularJS 自定义过滤器调用 2 次

转载 作者:行者123 更新时间:2023-11-28 15:07:48 25 4
gpt4 key购买 nike

我正在尝试 Angular 自定义过滤器示例:https://scotch.io/tutorials/building-custom-angularjs-filters#filters-that-actually-filter在我的版本中看起来像:

<!DOCTYPE html>
<html>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<body>

<div ng-app="myApp" ng-controller="demo" >

<div>

<p><strong>Original:</strong></p>
<ul class="list">
<li ng-repeat="x in example1">{{ x.name }}</li>
</ul>
<p><strong>Static Language Filter:</strong></p>
<ul class="list">
<li ng-repeat="x in example1 | staticLanguage">{{x.name }}</li>
</ul>

</div>

</div>

<script>
var app = angular.module('myApp', []);
var counter=0;

app.controller('demo', function($scope){
$scope.example1 = [
{name: 'C#', type : 'static'},
{name: 'PHP', type : 'dynamic'},
{name: 'Go', type : 'static'},
{name: 'JavaScript', type: 'dynamic'},
{name: 'Rust', type: 'static'}
];

});


// Setup the filter
app.filter('staticLanguage', function() { // Create the return function and set the required parameter name to **input**
return function(input) {
counter+=1;
console.log(counter);
var out = [];
// Using the angular.forEach method, go through the array of data and perform the operation of figuring out if the language is statically or dynamically typed.
angular.forEach(input, function(input) {
if (input.type === 'static') {
out.push(input);
}
});
return out;

};
});

</script>

</body>
</html>

从 console.log 看来,由于某种原因,自定义过滤器函数 staticLanguage 被调用了两次,但从代码本身来看,它只被调用了一次: ng-repeat="x in example1 | staticLanguage"

有人知道为什么吗?

P.S 我还没有弄清楚“脏检查”与我的问题有什么关系......如果我删除计数器变量并只是将一些 console.log("text") 放在它的位置 staticLanguage 函数仍然被调用两次

最佳答案

据我所知,这是由于 AngularJS 脏检查造成的,并且已在其他地方得到解答 here 。这是正常现象,请阅读链接。

关于javascript - AngularJS 自定义过滤器调用 2 次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38163530/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com