我使用JSONLint解析一些JSON和我不斷收到錯誤:JSON解析錯誤:期待 'STRING'
Error: Parse error on line 1: [{「 product」: [{「
---^ Expecting 'STRING', '}', got 'undefined'
這是代碼:
[
{
「product」 : [ { 「code」 : 「Abc123」, 「description」 : 「Saw blade」, 「price」 : 34.95 } ],
「vendor」 : [ { 「name」 : 「Acme Hardware」, 「state」 : 「New Jersey」 } ]
},
{
「product」 : [ { 「code」 : 「Def456」, 「description」 : 「Hammer」, 「price」 : 22.51 } ],
},
{
「product」 : [ { 「code」 : 「Ghi789」, 「description」 : 「Wrench」, 「price」 : 12.15 } ],
「vendor」 : [ { 「name」 : 「Acme Hardware」, 「state」 : 「New Jersey」 } ]
},
{
「product」 : [ { 「code」 : 「Jkl012」, 「description」 : 「Pliers」, 「price」 : 14.54 } ],
「vendor」 : [ { 「name」 : 「Norwegian Tool Suppliers」, 「state」 : 「Kentucky」 } ]
}
]
不要使用智能引號。 – SLaks
什麼是智能報價? – yitzih
噢好吧看起來,並更換了所有這些,它的工作表示感謝! – yitzih