gpt4 book ai didi

javascript - 在 javascript array() 中存储和检索对象;

转载 作者:行者123 更新时间:2023-11-28 21:06:24 27 4
gpt4 key购买 nike

嗨,我已经寻找答案,但由于在线教程都是 friends = ("bob","fred","joe"); 我什么也没得到。我希望能够在数组的每个索引中存储多个具有 1-3 个值的对象,例如:

map = [{ground:0},{ground:0, wall:1},{ground:0, item:3}]

我现在拥有的对象看起来像:

node = {};
node = {ground:0, object:1};

但是当我尝试数组方式时我无法访问它,我得到的只是“对象对象”。从 map 数组中一一获取值的正确方法是什么?

最佳答案

你的意思是:


var map = [{ground:0},{ground:0, wall:1},{ground:0, item:3}];
for(var i = 0; i < map.length; i++) {
console.log(map[i].ground + " item " + map[i].item);
}

关于javascript - 在 javascript array() 中存储和检索对象;,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9769511/

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