gpt4 book ai didi

javascript - 访问对象内对象的键和值

转载 作者:太空宇宙 更新时间:2023-11-04 15:46:13 25 4
gpt4 key购买 nike

我已经四处寻找了一段时间,但似乎找不到我面临的问题的答案。我是新人,所以很有可能我只是在做我想做的错误的事情。我所做的事情的目的只是为了了解我可以使用对象、数组和循环做什么和不能做什么,所以当我用我想做的事情完成这个项目时,我正在慢慢地弄清楚如何做这些东西。

所以我这里有一堆对象(带有键和值)。我将把每个单独的( Angular 色)对象存储到另一个名为“Angular 色”的对象中。

function Character(sociability, assertiveness, adventurous, emotionalExpressiveness, kindness,  altruism, affection, trust, impulseControl, thoughtfullness, emotionalStability, sexuality, evil, intellectualCuriosity, novelty, interests, intelligence) {
"use strict";
this.sociability = sociability;
this.assertiveness = assertiveness;
this.adventurous = adventurous;
this.emotionalExpressiveness = emotionalExpressiveness;
this.kindness = kindness;
this.altruism = altruism;
this.affection = affection;
this.trust = trust;
this.impulseControl = impulseControl;
this.thoughtfullness = thoughtfullness;
this.emotionalStability = emotionalStability;
this.sexuality = sexuality;
this.evil = evil;
this.intellectualCuriosity = intellectualCuriosity;
this.novelty = novelty;
this.interests = interests;
this.intelligence = intelligence;
}

var aloy = new Character(0, 11, 11, 0, 11, 11, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0),
bayonetta = new Character(0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 13, 14, 17, 0, 11, 0, 0),
elizabeth = new Character(0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 12, 12, 12, 12),
ellie = new Character(0, 12, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 11, 10),

//store all above objects into new object
var Users = {
aloy: aloy,
bayonetta: bayonetta,
elizabeth: elizabeth,
ellie: ellie,
};

此后,我创建一个数组,其中包含来自 Character 对象的 5 个键的名称:

var matchArr = ["sociability", "assertiveness", "adventurous", "emotionalExpressiveness", "kindness"]

这是我遇到的部分,我会尽力解释它。我将首先向您展示代码,然后尝试理解我想要做什么。

for (i = 0; i <= 4; i++) {
for (var obj in Users) {
if (Users.obj.matchArr[0] > 1) {
console.log(obj)
}
}
}

我想要做的是循环访问Users对象,并且如果该对象中的一个对象(Characters)有一个键,其值满足我的if 语句,记录该 Character 对象的名称。

-如果我记录 for (var obj in Users) { console.log(obj); } 我按预期循环访问存储在 Users 中的每个 Character 名称。

-如果我按其自身记录 matchArr[0],我会从 matchArr 数组中获得预期的 "sociability"

-如果我记录Users.aloy.sociability,我会按预期得到0,因为它是aloy.sociability的值

-但是如果我记录 Characters.aloy.matchArr[0] 我会收到错误(无法读取未定义的属性“0”)。我不明白为什么这与显式输入 sociability 不同,因为这是 matchArr[0] 的确切值。

如何以我尝试的方式正确引用Users.aloy.sociability。在我看来,当我引用 Users.obj.matchArr[0] 时,它与显式键入 Users.aloy.sociability, Users.bayonetta.sociability` 是有道理的。 (循环时依此类推)。

再说一次,我的做法可能完全错误,我会很感激任何帮助,即使它只是向我指出其他我可以阅读并更好地理解的文档,这些文档可能会引导我走向正确的方向。

我唯一的猜测是数组值(例如 matchArr[0] > "sociability")是一个字符串,我不能以这种方式使用字符串。如果是这样,我不知道该怎么办。

预先感谢您提供的任何帮助。

最佳答案

此循环应打印 Angular 色名称以及该 Angular 色匹配的属性。

for (var key in Users) {
matchArr.forEach(function(el) {
if (Users[key][el] > 1) {
console.log(key + ' matches attribute of ' + el);
}
});
}

工作中code example on jsfiddle .

关于javascript - 访问对象内对象的键和值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43548149/

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