最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - JSON.parse error is giving error with double quotes string - Stack Overflow

programmeradmin2浏览0评论

Why is it that

//Code
JSON.parse("{'name':'Khushal Khan'}");

results in this error

//Resposnse
SyntaxError: Unexpected token '

while this works perfectly

//Code
JSON.parse('{"name":"Khushal Khan"}');

Output:

//Response
Object {name: "Khushal Khan"}

Why is it that

//Code
JSON.parse("{'name':'Khushal Khan'}");

results in this error

//Resposnse
SyntaxError: Unexpected token '

while this works perfectly

//Code
JSON.parse('{"name":"Khushal Khan"}');

Output:

//Response
Object {name: "Khushal Khan"}
Share Improve this question asked Feb 28, 2014 at 17:02 user2009750user2009750 3,1976 gold badges37 silver badges58 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 6

The problem is the type of quote used in your JSON string, not the outer quotes. The JSON specification only allows for double quoted strings. You could use either type of quote to actually pass your JSON string to the parse() function, though.

From the JSON spec:

The problem is not that your JavaScript string uses " characters but that your JSON strings do not.

JSON is not JavaScript. JSON strings must be delimited by " characters.

From the specification:

string = quotation-mark *char quotation-mark

and

quotation-mark = %x22      ; "

Problem is not with double quoted string, but the json should have no single quotes as delimiters.

发布评论

评论列表(0)

  1. 暂无评论