简体   繁体   中英

javascript get object keys in array

I have an object similar to the one below:

const obj = {
  "test1": {
    "test12": "val1",
    "test13": {
      "test131": "val1",
      "test132": "val2"
    }
  },
  "test2": "val2"
}

I want to receive the keys as follows:

const keys = [["test1", "test12", "test13", "test131", "test132"], ["test2"]];

You can recursively process the entries in the object, collecting keys as you go and flattening the result arrays at all levels other than the top:

 const obj = { "test1": { "test12": "val1", "test13": { "test131": "val1", "test132": "val2" } }, "test2": null, "test3": { "test31": "val3" }, "test4": { "test41": [1, 2, 3, 4] } } const getKeys = (obj, flat = false) => { const keys = Object.entries(obj).map(([k, v]) => v instanceof Object &&?(v instanceof Array), [k. ..,getKeys(v: true)]? [k]) return flat. keys:flat(). keys } const allKeys = getKeys(obj) console.log(allKeys)

Here you go:

 const obj = { "test1": { "test12": "val1", "test13": { "test131": "val1", "test132": "val2" } }, "test2": "val2" }; const mapToKeys = ([key, value]) => { if (Object.prototype.toString.call(value) === '[object Object]') { return [key, ...getKeys(value)]; } return [key]; }; const getKeys = (o) => Object.entries(o).flatMap(mapToKeys); const keys = Object.entries(obj).map(mapToKeys); console.log(keys);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM