我想创建带有3个属性的json文件是关键字,并且每个键都有两个字段,目前我尝试使用以下内容并且我收到错误,我错过了什么?
{
"test1": {
"id": "0001",
"type": "USER"
}"Test2": {
"id": "0002",
"type": "USER2"
}
}
答案 0 :(得分:2)
用于将test1数组与test2数组分开的逗号
{
"test1": {
"id": "0001",
"type": "USER"
},
"test2": {
"id": "0002",
"type": "USER2"
}
}
答案 1 :(得分:1)
JSON以逗号分隔。在每个键:值对之后必须有一个逗号,除非它是该组中的最后一个,例如
{
"Item_1":{
"Item_1_Param1": "Param1", // Comma required here
"Item_1_Param2": "Param2" // Comma not required here
}, // Comma required here
"Item_2":{
"Item_2_Param1": "Param1", // Comma required here
"Item_2_Param2": "Param2" // Comma not required here
} // Comma not required here
答案 2 :(得分:0)
一般来说没关系,你只需要添加一个逗号
{
"test1": {
"id": "0001",
"type": "USER"
}
, // comma here is important
"Test2": {
"id": "0002",
"type": "USER2"
}
}