根据键数组获取嵌套对象中的值
根据keys
数组获取嵌套JSON对象中的目标值。
- 将要在嵌套JSON对象中比较的键作为一个
Array
。 - 使用
Array.prototype.reduce()
逐个获取嵌套JSON对象中的值。 - 如果键存在于对象中,则返回目标值,否则返回
null
。
const deepGet = (obj, keys) =>
keys.reduce(
(xs, x) => (xs && xs[x] !== null && xs[x] !== undefined ? xs[x] : null),
obj
);
let index = 2;
const data = {
foo: {
foz: [1, 2, 3],
bar: {
baz: ['a', 'b', 'c']
}
}
};
deepGet(data, ['foo', 'foz', index]); // 获取 3
deepGet(data, ['foo', 'bar', 'baz', 8, 'foz']); // null