使用 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 -> 结束