我有一个包含对象和数组的嵌套数据结构。如何提取信息,即访问特定或多个值(或键)?
例如:
var data = {
code: 42,
items: [{
id: 1,
name: 'foo'
}, {
id: 2,
name: 'bar'
}]
};
我怎么能访问name
中的第二项的items
?
JavaScript 只有一种数据类型,可以包含多个值: Object 。 数组是一种特殊形式的对象。
(普通)对象具有形式
{key: value, key: value, ...}
数组有形式
[value, value, ...]
数组和对象都公开了一个key -> value
结构。数组中的键必须是数字,而任何字符串都可以用作对象中的键。键值对也称为“属性” 。
可以使用点表示法访问属性
const value = obj.someProperty;
或括号表示法 ,如果属性名称不是有效的 JavaScript 标识符名称[spec] ,或者名称是变量的值:
// the space is not a valid character in identifier names
const value = obj["some Property"];
// property name as variable
const name = "some Property";
const value = obj[name];
因此,只能使用括号表示法访问数组元素:
const value = arr[5]; // arr.5 would be a syntax error
// property name / index as variable
const x = 5;
const value = arr[x];
JSON 是数据的文本表示,就像 XML,YAML,CSV 等。要处理这些数据,首先必须将其转换为 JavaScript 数据类型,即数组和对象(以及如何使用这些数据进行解释)。 JavaScript中的Parse JSON问题解释了如何解析 JSON ? 。
如何访问数组和对象是 JavaScript 的基本知识,因此建议您阅读MDN JavaScript 指南 ,尤其是部分
嵌套数据结构是引用其他数组或对象的数组或对象,即其值是数组或对象。可以通过连续应用点或括号表示来访问这样的结构。
这是一个例子:
const data = {
code: 42,
items: [{
id: 1,
name: 'foo'
}, {
id: 2,
name: 'bar'
}]
};
假设我们想要访问第二个项目的name
。
以下是我们如何逐步完成的工作:
我们可以看到data
是一个对象,因此我们可以使用点表示法访问其属性。 items
属性访问如下:
data.items
值是一个数组,要访问它的第二个元素,我们必须使用括号表示法:
data.items[1]
该值是一个对象,我们再次使用点表示法来访问name
属性。所以我们最终得到:
const item_name = data.items[1].name;
或者,我们可以为任何属性使用括号表示法,特别是如果名称包含使点符号用法无效的字符:
const item_name = data['items'][1]['name'];
undefined
回复? 在大多数情况下,当您undefined
,对象 / 数组根本没有具有该名称的属性。
const foo = {bar: {baz: 42}};
console.log(foo.baz); // undefined
使用console.log
或console.dir
并检查对象 / 数组的结构。您尝试访问的属性实际上可能是在嵌套对象 / 数组上定义的。
console.log(foo.bar.baz); // 42
如果属性名称未知或我们想要访问数组的对象 / 元素的所有属性,我们可以使用for...in
[MDN]循环中的对象和for
[MDN]循环来进行数组迭代属性 / 元素。
对象
要遍历data
所有属性,我们可以像这样迭代对象 :
for (const prop in data) {
// `prop` contains the name of each property, i.e. `'code'` or `'items'`
// consequently, `data[prop]` refers to the value of each property, i.e.
// either `42` or the array
}
根据对象的来源(以及您想要做什么),您可能必须在每次迭代中测试该属性是否真的是对象的属性,或者它是继承的属性。您可以使用Object#hasOwnProperty
[MDN]执行此操作。
作为for...in
with hasOwnProperty
替代方法,您可以使用Object.keys
[MDN]来获取属性名称数组 :
Object.keys(data).forEach(function(prop) {
// `prop` is the property name
// `data[prop]` is the property value
});
数组
要迭代data.items
数组的所有元素,我们使用for
循环:
for(let i = 0, l = data.items.length; i < l; i++) {
// `i` will take on the values `0`, `1`, `2`,..., i.e. in each iteration
// we can access the next element in the array with `data.items[i]`, example:
//
// var obj = data.items[i];
//
// Since each element is an object (in our example),
// we can now access the objects properties with `obj.id` and `obj.name`.
// We could also use `data.items[i].id`.
}
也可以使用for...in
来迭代数组,但是有理由为什么应该避免这种情况: 为什么'for(var item in list)' 中的数组在 JavaScript 中被认为是不好的做法? 。
与浏览器支持的 ECMAScript 5 的增大,阵列方法forEach
[MDN]成为一个有趣的选择,以及:
data.items.forEach(function(value, index, array) {
// The callback is executed for each element in the array.
// `value` is the element itself (equivalent to `array[index]`)
// `index` will be the index of the element in the array
// `array` is a reference to the array itself (i.e. `data.items` in this case)
});
在支持 ES2015(ES6)的环境中,您还可以使用[MDN]循环的for...of
,它不仅适用于数组,而且适用于任何可迭代 :
for (const item of data.items) {
// `item` is the array element, **not** the index
}
在每次迭代中, for...of
直接给出了迭代的下一个元素,没有 “索引” 可以访问或使用。
除了未知密钥之外,数据结构的 “深度”(即它有多少嵌套对象)也可能是未知的。如何访问深层嵌套属性通常取决于确切的数据结构。
但是,如果数据结构包含重复模式,例如二叉树的表示,则解决方案通常包括以递归方式 [Wikipedia]访问数据结构的每个级别。
以下是获取二叉树的第一个叶节点的示例:
function getLeaf(node) {
if (node.leftChild) {
return getLeaf(node.leftChild); // <- recursive call
}
else if (node.rightChild) {
return getLeaf(node.rightChild); // <- recursive call
}
else { // node must be a leaf node
return node;
}
}
const first_leaf = getLeaf(root);
const root = {
leftChild: {
leftChild: {
leftChild: null,
rightChild: null,
data: 42
},
rightChild: {
leftChild: null,
rightChild: null,
data: 5
}
},
rightChild: {
leftChild: {
leftChild: null,
rightChild: null,
data: 6
},
rightChild: {
leftChild: null,
rightChild: null,
data: 7
}
}
};
function getLeaf(node) {
if (node.leftChild) {
return getLeaf(node.leftChild);
} else if (node.rightChild) {
return getLeaf(node.rightChild);
} else { // node must be a leaf node
return node;
}
}
console.log(getLeaf(root).data);
访问具有未知密钥和深度的嵌套数据结构的更通用方法是测试值的类型并相应地采取行动。
下面是一个将嵌套数据结构中的所有原始值添加到数组中的示例(假设它不包含任何函数)。如果我们遇到一个对象(或数组),我们只需再次对该值调用toArray
(递归调用)。
function toArray(obj) {
const result = [];
for (const prop in obj) {
const value = obj[prop];
if (typeof value === 'object') {
result.push(toArray(value)); // <- recursive call
}
else {
result.push(value);
}
}
return result;
}
const data = {
code: 42,
items: [{
id: 1,
name: 'foo'
}, {
id: 2,
name: 'bar'
}]
};
function toArray(obj) {
const result = [];
for (const prop in obj) {
const value = obj[prop];
if (typeof value === 'object') {
result.push(toArray(value));
} else {
result.push(value);
}
}
return result;
}
console.log(toArray(data));
由于复杂对象或数组的结构不一定明显,我们可以检查每一步的值来决定如何进一步移动。 console.log
[MDN]和console.dir
[MDN]帮助我们这样做。例如(Chrome 控制台的输出):
> console.log(data.items)
[ Object, Object ]
在这里,我们看到data.items
是一个包含两个元素的数组,这两个元素都是对象。在 Chrome 控制台中,甚至可以立即展开和检查对象。
> console.log(data.items[1])
Object
id: 2
name: "bar"
__proto__: Object
这告诉我们data.items[1]
是一个对象,在扩展它之后我们看到它有三个属性, id
, name
和__proto__
。后者是用于对象原型链的内部属性。但是,原型链和继承超出了这个答案的范围。
您可以通过这种方式访问它
data.items[1].name
要么
data["items"][1]["name"]
两种方式都是平等的。
如果您尝试通过id
或name
访问示例结构中的item
,而不知道它在数组中的位置,最简单的方法是使用underscore.js库:
var data = {
code: 42,
items: [{
id: 1,
name: 'foo'
}, {
id: 2,
name: 'bar'
}]
};
_.find(data.items, function(item) {
return item.id === 2;
});
// Object {id: 2, name: "bar"}
根据我的经验,使用更高阶函数而不是for
或for..in
循环会导致代码更容易推理,因此更易于维护。
只需 2 美分。