以数组角度返回特定对象

问题描述 投票:-2回答:1

我开始使用角度。我需要返回与搜索匹配的对象,或者至少包含该对象。请指教,我目前正在归还所有物品

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;
    }
    });

}

angular multidimensional-array angularjs-directive
1个回答
0
投票
return items.filter( it => {
    if (it[0].quoteOrderId.includes(searchText) == true){
        const found = it.find(function(response){
            return response;
        })
        return found;
    }
    else {
      return '';
    }
    });
   }

这就是我想要的

© www.soinside.com 2019 - 2024. All rights reserved.