gpt4 book ai didi

javascript - 在 JavaScript 中按属性过滤 JSON 数据

转载 作者:行者123 更新时间:2023-11-30 12:22:38 24 4
gpt4 key购买 nike

我有一个 JSON 序列化集合:

[
{
"_id":"person1",
"date":"7/20/2014 17:20:09",
"listed_name":"Tom",
"name":"Tom",
"contact_info":"tom@gmail.com"
},
{
"_id":"person2",
"date":"7/20/2014 17:20:09",
"listed_name":"Jane",
"name":"Jane",
"contact_info":"Person2@gmail.com"
},
{
"_id":"person3",
"date":"7/20/2014 17:20:09",
"listed_name":"John",
"name":"John",
"contact_info":"Person3@gmail.com"
}
]

还有来自另一个页面的属性名称信息...

["_id", "date", "listed_name"]

问题是...

使用 JavaScript,如何使用第二个数组作为过滤器以仅返回第二个数组中包含的列?

例如:使用这个数组 ["_id"]... 这个数组如何只显示所有 JSON 对象的 _id 数据但不显示日期listed_namename 等等...?

使用 ["_id"] 数组作为过滤器,预期的控制台输出应如下所示:

person1
person2
person3

最佳答案

假设您将传入的 JSON 保存在一个变量中。

var parsedJSON = JSON.parse(inputJSON)
var filterArray = ["_id", "date"]

for (var i = 0; i < parsedJSON.length; ++i) {
for (var filterItem in filterArray) {
console.log(parsedJSON[i][filterArray[filterItem]])
}
}

关于javascript - 在 JavaScript 中按属性过滤 JSON 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30496010/

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