我试着做一个简单的循环:
const parent = this.el.parentElement
console.log(parent.children)
parent.children.forEach(child => {
console.log(child)
})
但我得到以下错误:
Uncaught TypeError: parent.children.forEach不是一个函数
即使父母。孩子的日志:
有什么问题吗?
注:这是一个JSFiddle。
我试着做一个简单的循环:
const parent = this.el.parentElement
console.log(parent.children)
parent.children.forEach(child => {
console.log(child)
})
但我得到以下错误:
Uncaught TypeError: parent.children.forEach不是一个函数
即使父母。孩子的日志:
有什么问题吗?
注:这是一个JSFiddle。
当前回答
不需要forEach,你可以只使用from的第二个参数进行迭代,如下所示:
让节点列表=[{0:[{“a”:1、“b”:2},{' c ': 3}]}, {1: []}] Array.from(nodeList, child => { console.log(孩子) });
其他回答
使用JSON.parse ()
str_json = JSON.parse(array);
str_json.forEach(function (item, index) {
console.log(item);
});
对于对象,试试这个:
Object.keys(yourObj).forEach(key => {
console.log(key, yourObj[key]);
});
因为你正在使用ES6的特性(箭头函数),你也可以简单地使用这样的for循环:
(让孩子({0:[{“a”:1、“b”:2},{' c ': 3}]}, {1: []})) { console.log(孩子) }
第一个选项:间接调用forEach
父。children是一个类似数组的对象。请使用以下解决方案:
const parent = this.el.parentElement;
Array.prototype.forEach.call(parent.children, child => {
console.log(child)
});
父。children是NodeList类型,这是一个类似数组的对象,因为:
它包含length属性,该属性表示节点的数量 每个节点都是一个具有数字名称的属性值,从0开始:{0:NodeObject, 1: NodeObject,长度:2,…}
在本文中查看更多细节。
第二个选择:使用可迭代协议
的父母。children是一个HTMLCollection:它实现了可迭代协议。在ES2015环境中,你可以将HTMLCollection与任何接受可迭代对象的结构一起使用。
使用HTMLCollection和扩展操作符:
const parent = this.el.parentElement;
[...parent.children].forEach(child => {
console.log(child);
});
或者使用循环的for..(这是我的首选):
const parent = this.el.parentElement;
for (const child of parent.children) {
console.log(child);
}
不需要forEach,你可以只使用from的第二个参数进行迭代,如下所示:
让节点列表=[{0:[{“a”:1、“b”:2},{' c ': 3}]}, {1: []}] Array.from(nodeList, child => { console.log(孩子) });