我正在尝试在JSON中插入一个字符串数组,但它无效。
JSON:
{
"1": [{
"id": "1",
"title": "test 1",
"galery": { "http://placehold.it/540x540" , "http://placehold.it/540x520"}
}]
}
它在"galery"
行返回语法错误,但我无法弄清楚它是什么
答案 0 :(得分:2)
将[ ]
用于图库中的图像数组。 { }
将期望对象(键/值对)。
答案 1 :(得分:2)
对于数组,请使用:
"galery": ["http://placehold.it/540x540", "http://placehold.it/540x520"]
对于命名属性,请使用以下内容:
"galery": { url1:"http://placehold.it/540x540", url2:"http://placehold.it/540x520" }
答案 2 :(得分:1)
用括号替换括号。
{
"1": [{
"id": "1",
"title": "test 1",
"galery": [ "http://placehold.it/540x540" , "http://placehold.it/540x520" ]
}]
}
答案 3 :(得分:0)
您在两个地方的语法不正确。以下是正确的:
{
"1": {
"id": "1",
"title": "test 1",
"galery": ["http://placehold.it/540x540" , "http://placehold.it/540x520"]
}
}