text 展平对象

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 展平对象相关的知识,希望对你有一定的参考价值。

const flattenObject = (obj, prefix = '') =>
  Object.keys(obj).reduce((acc, k) => {
    const pre = prefix.length ? prefix + '.' : '';
    if (typeof obj[k] === 'object') Object.assign(acc, flattenObject(obj[k], pre + k));
    else acc[pre + k] = obj[k];
    return acc;
  }, {});

flattenObject({ a: { b: { c: 1 } }, d: 1 }); // { 'a.b.c': 1, d: 1 }

Flatten an object with the paths for keys.

Use recursion. Use Object.keys(obj) combined with Array.prototype.reduce() to convert every leaf node to a flattened path node. If the value of a key is an object, the function calls itself with the appropriate prefix to create the path using Object.assign(). Otherwise, it adds the appropriate prefixed key-value pair to the accumulator object. You should always omit the second argument, prefix, unless you want every key to have a prefix.

以上是关于text 展平对象的主要内容,如果未能解决你的问题,请参考以下文章

使用 JQ 展平嵌套的 Json 对象

js对象展平:深循环Json对象,然后展平对象? [复制]

展平/取消展平嵌套 JSON 对象的最快方法

为啥以及何时需要展平 JSON 对象?

如何将展平的对象序列化回服务器,在 RestKit 中未展平

如何使用 jq 展平复杂的 json 结构?