我使用JSONLint来解析一些JSON,我不断收到错误:
错误:第1行的解析错误:[{"product":[{"
--- ^期待'STRING','}',得到'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.. 22
JSON字符串文字必须使用普通引号字符("
),而不是智能引号(“”
).
JSON字符串文字必须使用普通引号字符("
),而不是智能引号(“”
).