JSON数组表单的问题

时间:2015-08-28 07:00:56

标签: json

在用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"
        }
    }
]

2 个答案:

答案 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”,,你会注意到它正在使用而不是"。替换它们你应该没事。