遍历嵌套的JSON对象数组并存储为键值对

时间:2019-03-18 20:17:17

标签: javascript json

我必须遍历此JSON:

{
  "data": 321563,
  "group": [
    {
      "added": 42421,
      "normal": {
        "x": 39,
        "y": "0.1300",
        "b": "0.4326",
        "c": "0.0552",
        "f": 166833
      },
      "j": "240313",
      "b": "0.2251",
      "a": "dda",
      "b": "0.101",
      "a": 922,
      "f": {
        "c": 39,
        "d": "0.263",
        "a": "2.8955",
        "h": "0.3211",
        "d": 274
      },
      "a": false,
      "k": 5,
      "w": "0.072",
      "d": "0.045",
      "e": 3
    },

我只希望j和k像键值对那样存储,例如"j":k

我需要循环所有这些,并将其存储到文件中。

2 个答案:

答案 0 :(得分:0)

您可以使用map获取新的项目数组,这不会影响旧的数组。

const data = {
  "game_count": 8750,
  "sets": [
    {
      "appid": "221540",
      "true_count": 9,
      "bgs_avg": "0.10",
      // Other data here
    },
    {
      "appid": "123456",
      "true_count": 9,
      "bgs_avg": "0.20",
      // Other data here
    }
  ]
}


// Use "data.sets = data.sets.map(...)" to replace the data
// The following will only assign to a new variable
const newArray = data.sets.map(itm => { return {appid: itm.appid, true_count: itm.true_count} })

console.log(newArray)

我们也可以使用data.sets = data.sets.map(...)来获取数据并将其直接分配回原始数据,如下所示:

const data = {
  "game_count": 8750,
  "sets": [
    {
      "appid": "221540",
      "true_count": 9,
      "bgs_avg": "0.10",
      // Other data here
    },
    {
      "appid": "123456",
      "true_count": 9,
      "bgs_avg": "0.20",
      // Other data here
    }
  ]
}

data.sets = data.sets.map(itm => { return {appid: itm.appid, true_count: itm.true_count} })

console.log(data)

答案 1 :(得分:0)

在简单的javascript中,这应该有效-

let newObj = {}
for(let i=0; i<obj.group.length; i++){
  newObj[obj.group[i].j] = obj.group[i].k 
}

“ obj”是您的对象

newObj将是您的新对象,它将包含所有键值对