我有一个包含对象和数组的嵌套数据结构。如何提取信息,即访问特定或多个值(或键)?
例如:
var data = { code: 42, items: [{ id: 1, name: 'foo' }, { id: 2, name: 'bar' }] };
如何访问name中的第二项items?
name
items
JavaScript只有一种可以包含多个值的数据类型: Object 。一个 阵列 是对象的一种特殊形式。
(普通)对象具有以下形式
{key: value, key: value, ...}
数组具有以下形式
[value, value, ...]
数组和对象都公开一个key -> 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中解析JSON问题中说明了如何解析JSON [?]。
嵌套数据结构是引用其他数组或对象的数组或对象,即其值是数组或对象。可以通过连续应用点或括号符号来访问此类结构。
这是一个例子:
const data = { code: 42, items: [{ id: 1, name: 'foo' }, { id: 2, name: 'bar' }] };
假设我们要访问name第二个项目。
这是我们逐步执行的方法:
我们看到的data是一个对象,因此我们可以使用点表示法访问其属性。该items属性的访问方式如下:
data
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
console.dir
console.log(foo.bar.baz); // 42
如果属性名称未知或我们要访问的对象的所有属性/数组元素,我们可以使用for...in [MDN] 环为目的和for [MDN] 环用于在所有属性/元素阵列进行迭代。
for...in
for
对象
要遍历的所有属性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]] 进行此操作。
Object#hasOwnProperty
作为for...inwith的替代hasOwnProperty,你可以使用[Object.keys [MDN]] 获取 属性名称数组 :
hasOwnProperty
Object.keys
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]也] 成为有趣的替代方法:
forEach
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...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对该值再次调用(递归调用)。
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__。后者是用于对象原型链的内部属性。但是,原型链和继承超出了此答案的范围。
id
__proto__