angular 在數組中篩選對象某個屬性值的集合

好比 我想 在 服務數組中 獲取 未結算的服務數組

你能夠在你的HTML中code

{{ vm.order.outMealService| filter : {'isSettlement':false} }}

在你的js中 你能夠it

  var outMealServicelist = vm.order.outMealService.filter(function (item) {
                    return item.isSettlement == false;
                });
相關文章
相關標籤/搜索