gpt4 book ai didi

javascript - 还记得以前的 key 吗?

转载 作者:行者123 更新时间:2023-11-28 05:18:48 25 4
gpt4 key购买 nike

function read(a) {
var key = Object.keys(a)[0];
if (!key) {
return {}
} else if (!key.includes(";")) {
var inkey = a[key];
delete a[key]
return read(Object.assign({}, inkey, a))
} else {
console.log(key)
delete a[key]
return read(a);
}
}

var locations = {
"buildings":{
"3;":{"name":"Market"},
"8;":{"name":"Free car"},
"9;":{"name":"House"}
},
"people":{
"males":{
"16;":{
"name":"John",
"items":{
"food":1,
"water":1
}
}
}
}
}
read(locations);

函数read(locations)按预期执行并打印每个数字。

我如何找到最接近一组数字(包括之前的键)的值。

例如:如果最接近数字的是“John”(数字 16),我还需要该对象位于“males”和“people”中,而不仅仅是数字“中”的所有内容。

我可以使用与 read() 类似的函数来获取数字“后面”的任何内容(以便作为名称和项目(如果存在)),尽管我想记住以前的键。

最佳答案

您可以为对象的路径添加一个变量。

function read(a, path) {
if (!a || typeof a !== 'object') {
return {};
}
Object.keys(a).forEach(function (key) {
if (key.includes(";")) {
console.log(key, path.join(', '));
return read(a[key], path || []);
}
read(a[key], (path || []).concat(key));
});
}

var locations = { buildings: { "3;": { name: "Market" }, "8;": { name: "Free car" }, "9;": { name: "House" } }, people: { males: { "16;": { name: "John", items: { food: 1, water: 1 } } } } };

read(locations);

关于javascript - 还记得以前的 key 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40743595/

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