2020-07-22
描述
根据给定的多个选择器,从一个对象中获取一组与之匹配的属性值。
提示
- 使用
Array.prototype.map()
迭代每一个选择器 - 使用
String.prototype.replace()
将方括号替换为点 - 使用
String.prototype.split('.')
将每一个选择器都进行分割 - 使用
Array.prototype.filter()
移除空值 - 使用
Array.prototype.reduce()
逐层获取指定的对象值
代码
const get = (from, ...selectors) =>
[...selectors].map(s =>
s
.replace(/\[([^\[\]]*)\]/g, '.$1.')
.split('.')
.filter(t => t !== '')
.reduce((prev, cur) => prev && prev[cur], from)
);
示例
获取指定的属性值:
const obj = { selector: { to: { val: 'val to select' } }, target: [1, 2, { a: 'test' }] };
get(obj, 'selector.to.val', 'target[0]', 'target[2].a'); // ["val to select", 1, "test"]