从路径字符串中获取嵌套对象属性

从对象中检索由给定选择器指示的一组属性。

  • 使用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']