admin管理员组

文章数量:1344319

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.

本文标签: javascriptJSONparse error is giving error with double quotes stringStack Overflow