作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何使用 AngularJS 在数组中创建项目的子集?
例如;从“todos”创建一个仅包含“done:true”项的新数组。
function fooController ($scope) {
$scope.todos = [
{text:'foo' , done:false},
{text:'foobar' , done:true},
{text:'foofoo' , done:false},
{text:'foobar2' , done:true}
]
}
http://docs.angularjs.org/api/ng.filter:filter
大约看10:45 -> 结束
最佳答案
只需将过滤器添加到您的 ngRepeat 并只显示您想要的内容:
ng-repeat='todo in todos | filter:done==true'
fiddle :http://jsfiddle.net/dPWsv/1/
如果您想从列表中完全删除元素,请使用 fiddle 中的 archive
函数。
注意:从版本 1.1.3 开始,过滤器行为发生了变化。你现在要使用
ng-repeat='todo in todos | filter:{done:true}'
fiddle :http://jsfiddle.net/UdbVL/1/
关于angularjs - 如何在 AngularJS 中创建过滤器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16403645/
我是一名优秀的程序员,十分优秀!