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
3 Answers
Reset to default 6The 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
版权声明:本文标题:javascript - JSON.parse error is giving error with double quotes string - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743768355a2535660.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论