如何在 ng-repeat 中显示数组的特定字母项?
Posted
技术标签:
【中文标题】如何在 ng-repeat 中显示数组的特定字母项?【英文标题】:how to show a particular alphabet item of array in ng-repeat? 【发布时间】:2016-07-07 18:22:55 【问题描述】:我有两个数组,一个用于字母,第二个用于标签.. 所以我只想在那个特定的字母类别中显示相同的字母项目 示例 -- apple必须属于A类,zoo必须属于Z类...
小提琴链接http://jsfiddle.net/4dGxn/149/
html
<div class="form-group" ng-controller="mainCtrl">
<div ng-repeat="alp in alpha">
<h2>alp</h2>
<ul>
<li ng-repeat="tag in tags">tag</li>
</ul>
</div>
</div>
角度
var app = angular.module("app", []);
app.controller("mainCtrl", ['$scope', function($scope)
$scope.alpha = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p","q", "r", "s", "t", "u", "v", "w", "x", "y", "z"];
$scope.tags = ["apple", "dog", "cat", "dad", "baby", "zoo", "love", "hate", "rat", "room", "home", "age", "bad"];
]);
【问题讨论】:
【参考方案1】:在第二个 ng-repeat 中使用自定义过滤器。
使用 ng-show 会在 alpha 组中创建不需要的 dom 元素。
var app = angular.module("app", []);
app.controller("mainCtrl", ['$scope', function($scope)
$scope.alpha = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p","q", "r", "s", "t", "u", "v", "w", "x", "y", "z"];
$scope.tags = ["apple", "dog", "cat", "dad", "baby", "zoo", "love", "hate", "rat", "room", "home", "age", "bad"];
]);
app.filter('myfilter', function()
return function(input, text)
// I recommend to use underscore lib for old browser.
return input.filter(function(item)
// I recommend to use standard regex for old browser.
return item.startsWith(text);
);
;
);
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div ng-app="app">
<div class="form-group" ng-controller="mainCtrl">
<div ng-repeat="alp in alpha">
<h2>alp</h2>
<ul>
<li ng-repeat="tag in tags | myfilter:alp">tag</li>
</ul>
</div>
</div>
</div>
【讨论】:
【参考方案2】:你可以像这样使用filter
:
var app = angular.module("app", []);
app.controller("mainCtrl", ['$scope', function($scope)
$scope.alpha = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p","q", "r", "s", "t", "u", "v", "w", "x", "y", "z"];
$scope.tags = ["apple", "dog", "cat", "dad", "baby", "zoo", "love", "hate", "rat", "room", "home", "age", "bad"];
$scope.f = function(alp)
return function(tag)
return tag[0] == alp;
]);
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div class="form-group" ng-app="app" ng-controller="mainCtrl">
<div ng-repeat="alp in alpha">
<h2>alp</h2>
<ul>
<li ng-repeat="tag in tags | filter:f(alp)">tag</li>
</ul>
</div>
</div>
【讨论】:
这个很完美..不加载其他元素..+1【参考方案3】:您可以使用str.startsWith
检查元素是否以特定字符开头
所以在你的例子中:
<div class="form-group" ng-controller="mainCtrl">
<div ng-repeat="alp in alpha">
<h2>alp</h2>
<ul>
<li ng-repeat="tag in tags" ng-show="tag.startsWith(alp)">tag</li>
</ul>
</div>
</div>
这里是接线Fiddle
【讨论】:
加1个完美答案。 这会将每个 alpha 下的所有标签添加为隐藏状态,从而添加更多的 html li 元素。以上是关于如何在 ng-repeat 中显示数组的特定字母项?的主要内容,如果未能解决你的问题,请参考以下文章
如何在带有ng-repeat的角度js表中使用复选框数组和文本区域/下拉列表数组?