我有一个数组。如果有人预订了一张桌子,则数组中的reserve 设置为true。
$rootScope.tafels = [
{id: 0, text:'table 2a, 4 persons.', reserve:false},
{id: 1, text:'table 3b, 8 persons.', reserve:false}
];
我有一个返回数组长度的函数:
$rootScope.getTotaalTafels = function()
{ return $rootScope.tafels.length; };
现在我无法解决的困难部分,也许你可以:
我想返回未保留的总表,上面显示了我的函数。如何对其应用过滤器?