gpt4 book ai didi

javascript - 基于 Node JS 中的其他数组过滤/搜索 JavaScript 对象数组

转载 作者:行者123 更新时间:2023-11-28 19:36:10 24 4
gpt4 key购买 nike

我有一个 ids 数组和一个 JavaScript 对象数组。我需要使用 Node JS 中数组中的值来过滤/搜索 JavaScript 对象数组。

例如

var id = [1,2,3];

var fullData = [
{id:1, name: "test1"}
,{id:2, name: "test2"}
,{id:3, name: "test3"}
,{id:4, name: "test4"}
,{id:5, name: "test5"}
];

使用上述数据,结果我需要:

var result = [ 
{id:1, name: "test1"}
,{id:2, name: "test2"}
,{id:3, name: "test3"}
];

我知道我可以循环遍历两者并检查匹配的 id。但这是唯一的方法还是有更简单且资源友好的解决方案。

要比较的数据量约为 30-40k 行。

最佳答案

这可以解决问题,使用 Array.prototype.filter :

var result = fullData.filter(function(item){ // Filter fulldata on...
return id.indexOf(item.id) !== -1; // Whether or not the current item's `id`
}); // is found in the `id` array.

请注意,此filter功能在IE 8或更低版本上不可用,但the MDN has a polyfill available .

关于javascript - 基于 Node JS 中的其他数组过滤/搜索 JavaScript 对象数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25849178/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com