在用jsonlint.com测试后,我无法弄清楚为什么这不是有效的JSON。它只是一个对象数组,我没有看到任何遗漏或不合适的地方。
[
{
“rel”: “self”,
"href": "http://ourdomain/persons",
"name": {
"last": "best"
}
},
{
“rel”: “self”,
"href": "http://ourdomain/persons",
"name": {
"last": "bet"
}
},
{
“rel”: “self”,
"href": "http://ourdomain/persons",
"name": {
"last": "brown"
}
}
]
答案 0 :(得分:2)
查看包含 rel 和 self 的引号。
[
{
"rel": "self",
"href": "http://ourdomain/persons",
"name": {
"last": "best"
}
},
{
"rel": "self",
"href": "http://ourdomain/persons",
"name": {
"last": "bet"
}
},
{
"rel": "self",
"href": "http://ourdomain/persons",
"name": {
"last": "brown"
}
}
DONE!
答案 1 :(得分:1)
你遇到的问题是引号被另一个HTML字符替换。
如果你看这里“rel”: “self”,
,你会注意到它正在使用“
而不是"
。替换它们你应该没事。