返回角度数组中的特定对象

时间:2018-11-08 16:14:44

标签: angular multidimensional-array angularjs-directive

我开始使用angular。我需要返回与搜索匹配的对象,或者至少包括该对象。请告知,我目前正在退回所有物品

return items.filter( it => {
    console.log('awe', it[0].quoteOrderId.includes(searchText);
    if(it[0].quoteOrderId.includes(searchText) == true){
        console.log("we need the specific object returned");
    }
    else{
      return it;
    }
    });

}

1 个答案:

答案 0 :(得分:0)

return items.filter( it => {
    if (it[0].quoteOrderId.includes(searchText) == true){
        const found = it.find(function(response){
            return response;
        })
        return found;
    }
    else {
      return '';
    }
    });
   }

这就是我想要的