gpt4 book ai didi

javascript - 未捕获的类型错误 : items is not iterable

转载 作者:行者123 更新时间:2023-11-29 18:50:38 26 4
gpt4 key购买 nike

我的理解是 for...in 循环旨在迭代 Javascript 中的对象。 See this postthis post.

举个例子。这会在我的控制台中返回“Uncaught TypeError: items is not iterable”。

var text = {
name: "Coptic",
ranges: [[994, 1008], [11392, 11508], [11513, 11520]],
direction: "ltr",
year: -200,
living: false,
link: "https://en.wikipedia.org/wiki/Coptic_alphabet"
};

function dominantDirection(items) {
for (let item of items) {
if (item.direction === 'ltr') {
return 'ltr';
} else {
return 'rtl';
}
}
}

console.log(dominantDirection(text));

如果我将对象包装在数组 [] 中,它就可以正常工作。但是,我的第二个示例按预期工作。

var object1 = {a: 1, b: 2, c: 3};
var string1 = "";

function loopObj() {
for (var property1 in object1) {
console.log(string1 = string1 + object1[property1]);
}
}

console.log(loopObj());

为什么第一个例子需要一个数组而第二个例子不需要?

最佳答案

在您的第一个示例中,您使用了 for..of,它不能用于对象,只能用于字符串和数组。要迭代对象,可以使用 for..in 构造,也可以使用 Object.keys() 将对象的键放入数组中。

使用 Object.keys() 的例子:

const text = {
name: "Coptic",
ranges: [[994, 1008], [11392, 11508], [11513, 11520]],
direction: "ltr",
year: -200,
living: false,
link: "https://en.wikipedia.org/wiki/Coptic_alphabet"
};

for (let key of Object.keys(text)) {

console.log(`${key}: ${text[key]}`);
}

或者您也可以使用新的 Object.entries() 来获取键和值,如下所示:

const text = {
name: "Coptic",
ranges: [[994, 1008], [11392, 11508], [11513, 11520]],
direction: "ltr",
year: -200,
living: false,
link: "https://en.wikipedia.org/wiki/Coptic_alphabet"
};

for (let [key, value] of Object.entries(text)) {

console.log(`${key}: ${value}`);
}

关于javascript - 未捕获的类型错误 : items is not iterable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51389545/

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