使用Javascript将新组插入JSON

时间:2017-12-31 16:07:37

标签: javascript json

var module = {
  "code": "6COM9051",
  "name": "More Web Scripting",
  "cohort": "IT/JH/ITMB",
  "students": {
    "97xx08xx01": {
      "firstName": "Jo 1",
      "lastName": "Bloggs",
      "allocatedGroup": "690511"
    },
    "97xx08xx03": {
      "firstName": "Jo 2",
      "lastName": "Bloggs",
      "allocatedGroup": "690511"
    },
    "97xx08xx02": {
      "firstName": "Jo 3",
      "lastName": "Bloggs",
      "allocatedGroup": "690513"
    },
    "97xx08xx06": {
      "firstName": "Joe 1",
      "lastName": "Bliggs",
      "allocatedGroup": "690513"
    },
    "97xx08xx05": {
      "firstName": "Joe 2",
      "lastName": "Bliggs",
      "allocatedGroup": "690511"
    },
    "97xx08xx04": {
      "firstName": "Joe 3",
      "lastName": "Bliggs",
      "allocatedGroup": "690513"
    },
  },
  "groups": {
    "690511": {
      "name": "Tutorial 1",
      "members": ["97xx08xx01", "97xx08xx05", "97xx08xx03"]
    },
    "690513": {
      "name": "Tutorial 2",
      "members": ["97xx08xx04", "97xx08xx02", "97xx08xx06"]
    }
  }
}

1 个答案:

答案 0 :(得分:-1)

您只需指定值

即可
modules.groups["<group key>"] = {
    "name": "Tutorial 123",
    "members": ["97xx08xx01", "97xx08xx05", "97xx08xx03"]
}

PS:我认为你是stackoverflow的新手。虽然我回答了这个问题,但这个社区不鼓励这类问题。 如何向JSON添加属性是一个非常基本的东西,在百万篇教程中有解释,可能在几年前就在stackoverflow上回答。在你寻求帮助之前做好功课。