gpt4 book ai didi

javascript - 在类似数组的对象中迭代和调用方法

转载 作者:行者123 更新时间:2023-12-02 07:25:16 24 4
gpt4 key购买 nike

我有这个对象结构,想遍历 obj 的所有直接子对象并调用它们的 myMethod 方法。虽然 for...in 正确地迭代它们,但我总是收到此错误 o.myMethod is not a function

这是一个JSFiddle

obj = {
test1: {
"name": "test1string",
"myMethod": function(){
console.log("test 1 method called")
}
},
test2: {
"name": "test2string",
"myMethod": function(){
console.log("test 2 method called")
}
}
};

for (var o in obj) {
console.log(o.name());
o.myMethod();
}

我怎样才能实现想要的行为?

最佳答案

发生这种情况是因为 o 在您的 for 循环中 corresponds to keys and not to values .

要获取值,请使用 square-bracket notation : obj[o].myMethod();.

关于javascript - 在类似数组的对象中迭代和调用方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33123296/

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