gpt4 book ai didi

javascript - 如何使用不在 Angular 中另一个数组中的值过滤 ng-repeat?

转载 作者:数据小太阳 更新时间:2023-10-29 06:14:51 24 4
gpt4 key购买 nike

有没有什么方法可以使用 Angular 过滤器将值与数组中的每个值进行比较?

Categories: <span ng-repeat="c in i.categories | filter: '!'+'myArray' ">{{c}}</span>

我想显示 i.categories 中不在 myArray 中的值:

$scope.i = {
categories: [
"Europe & Eurasia",
"Featured",
"Headlines",
"Middle East",
"News",
"NEWS BY TOPIC",
"News Categories",
"REGIONAL NEWS"
]
};

$scope.myArray = ['Featured', 'Headlines', 'News'];

我想从 c 获取 包含在 myArray 中的所有内容。

我尝试编写一些函数,但由于请求太多,我的应用程序运行速度非常慢。

那么,我能否以某种方式传递我的数组,让 Angular 遍历该数组中的每一项并将其与当前值进行比较?

最佳答案

您可以尝试使用自定义过滤器,如下所示:

angular.module('myApp', []).filter('notInArray', function($filter) {
return function(list, arrayFilter) {
if(arrayFilter) {
return $filter("filter")(list, function(listItem) {
return arrayFilter.indexOf(listItem) == -1;
});
}
};
});

像这样使用它:

<div ng-repeat='c in i.categories | notInArray:myArray'>{{c}}</div>

JSFiddle demo


angular.module('Test', []).filter('notInArray', function($filter) {
return function(list, arrayFilter) {
if(arrayFilter) {
return $filter("filter")(list, function(listItem) {
return arrayFilter.indexOf(listItem) == -1;
});
}
};
});

function Ctrl($scope) {
$scope.i = {categories: [
"Europe & Eurasia",
"Featured",
"Headlines",
"Middle East",
"News",
"NEWS BY TOPIC",
"News Categories",
"REGIONAL NEWS"
]};

$scope.myArray = ['Featured', 'Headlines', 'News'];
}
<!DOCTYPE html>
<html ng-app='Test'>
<head>
<script src="http://code.angularjs.org/1.1.1/angular.min.js"></script>
<meta charset=utf-8 />
</head>
<body ng-controller='Ctrl'>
<div ng-repeat='c in i.categories | notInArray:myArray'>{{c}}</div>
</body>
</html>

关于javascript - 如何使用不在 Angular 中另一个数组中的值过滤 ng-repeat?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42343088/

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