我开始使用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;
}
});
}
答案 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 '';
}
});
}
这就是我想要的