我写了一个Angular应用程序的概念验证概念,允许一个人投票给美国总统。
<!DOCTYPE html>
<html ng-app="ElectionApp"">
<head>
<title></title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.4/angular.min.js"></script>
<script>
var ElectionApp = angular.module("ElectionApp", []);
var ElectionController = ElectionApp.controller("ElectionController", [function () {
// Pretend that this data came from an outside data-source.
this.candidates = {
"14837ac3-5c45-4e07-8f12-5771f417ca4c": {
name: "Alice",
gender: "female"
},"333eb217-c8d1-4b94-91a4-22a3770bbb22": {
name: "Bob",
gender: "male"
}
};
this.vote = function () {
// TODO: Record the user's vote.
};
}]);
</script>
</head>
<body ng-controller="ElectionController as ctrl">
Who would you like to elect President? <br />
<select
ng-model="ctrl.selection"
ng-options="person as person.name for (id, person) in ctrl.candidates | filter{gender:'female'}">
</select>
<input type="button" value="Vote!" ng-submit="ctrl.vote();" />
<h2>Candidate Profiles</h2>
<div ng-repeat="candidate in ctrl.candidates">
{{candidate.name}}, {{candidate.gender}}
</div>
</body>
</html>
我的投票应用程序显示候选人姓名列表以及每位候选人的个人资料,在这种情况下,由候选人的姓名和性别组成。
出于这个问题的目的,请假装可供选择的候选人名单来自远程数据源,但将采用与示例相同的格式。
假设在选举前不久,通过了一项宪法修正案,规定下一任美国总统必须是女性。假设数据源无法及时更新,并且老板对我说,“我听说过使用Angular,您可以使用过滤器随意选择数据源中的哪些项目出现在表单上。发生!“
继我在网上看到的一些例子后,我写了上面的代码,但它不再显示任何候选人。我做错了什么?
如何使用角度滤镜过滤选择列表中的选项?
答案 0 :(得分:19)
您在过滤关键字后忘记了“:”。
<select
ng-model="ctrl.selection"
ng-options="person as person.name for person in ctrl.candidates | filter:{gender:'female'}">
</select>
答案 1 :(得分:16)
可能有点迟了,但是对于其他寻找信息的人我会使用它。
$scope.deliveryAddresses = data;
数据是复杂的Json id,姓名和城市从我的Angular控制器中的webapi收到$ http.get
我在我的Html页面中使用以下代码段
ng-options="address.name for address in deliveryAddresses | filter:{name:search} track by address.id
其中search是对文本框的引用。 简单而有效。
希望它有所帮助。
答案 2 :(得分:11)
filter
只能在数组上运行。
但您可以创建自定义过滤器:
ElectionApp.filter('females', [ function() {
return function (object) {
var array = [];
angular.forEach(object, function (person) {
if (person.gender == 'female')
array.push(person);
});
return array;
};
}]);
然后写
ng-options="name as person.name for (id, person) in ctrl.candidates | females">