The reason for this "escapes" me.

JSON escapes the forward slash, so a hash {a: "a/b/c"} is serialized as {"a":"a\/b\/c"} instead of {"a":"a/b/c"}.

Why?

link|improve this question

71% accept rate
1  
FWIW I've never seen forward slashes escaped in JSON, I just noticed it with the Java library at code.google.com/p/json-simple – Jason S Oct 16 '09 at 22:29
feedback

4 Answers

up vote 21 down vote accepted

JSON doesn't require you to do that, it allows you to do that. It also allows you to use "\u0061" for "A", but it's not required. Allowing \/ helps when embedding JSON in a <script> tag, which doesn't allow </ inside strings, like Seb points out.

Some of Microsoft's ASP.NET Ajax/JSON API's use this loophole to add extra information, e.g., a datetime will be sent as "\/Date(milliseconds)\/". (Yuck)

link|improve this answer
1  
That ASP method is yuck indeed! – meder Oct 16 '09 at 22:06
Thanks for the answer. Never thought of that edge case. They should escape instances of </ with <\/, but not escape all the other slashes. :/ – Jason S Oct 16 '09 at 22:15
2  
That would be a good thing, escaping just </. Though JSON is not often embedded in script tags anyway. – Ruben Oct 16 '09 at 22:20
yeah, the hoops people have gone through for HTML... this is now the 2nd recent surprise for me re: JSON. The other one was that Infinity and NaN are not serialized. stackoverflow.com/questions/1423081 – Jason S Oct 16 '09 at 22:25
1  
See this blog post for the rationale for the ASP.NET JSON date format: weblogs.asp.net/bleroy/archive/2008/01/18/dates-and-json.aspx – michielvoo Dec 18 '11 at 21:51
show 3 more comments
feedback

This is because HTML does not allow a string inside a <script> tag to contain </, so in case that substring's there, you should escape every forward slash.

link|improve this answer
1  
We said the same thing, but you're better at the formatting, +1 sir – gn22 Oct 16 '09 at 22:04
Thanks, Gurdas! – Seb Oct 18 '09 at 16:40
why doesn't it just escape the ( </ ) character pair instead of all forward slashes ( / ) than ? – Hiro Protagonist Feb 20 at 16:26
@TheAllFoo: Because normally these encoders only work character-by-character and </ would be a special case. Programmers don't like special cases because it makes software complex. – hakre Apr 18 at 13:36
feedback

The JSON spec says you CAN escape forward slash, but you don't have to.

link|improve this answer
WTF? This is false. You can escape EVERY char if you want, that's true, but the JSON specs specifically says you MUST escape forward slashes. Read json.org. – Seb Oct 16 '09 at 22:01
I haven't read the spec but according to jsonlint.com, {"a":"a/b/c"} is a perfectly valid JSON string. – Darin Dimitrov Oct 16 '09 at 22:05
1  
json.org says 'Any UNICODE character except " or \ or control character'. You're saying / is a control character? – Harold L Oct 16 '09 at 22:06
No it doesn't. It explicitly says 'Any UNICODE character except " or \ or control character'. / is not mentioned as a character you must escape. – Ruben Oct 16 '09 at 22:06
2  
Harold: you are indeed correct. See ietf.org/rfc/rfc4627.txt p. 4 (it would be helpful to quote the RFC in your answer) – Jason S Oct 16 '09 at 22:17
show 1 more comment
feedback

I asked the same question some time ago and had to answer it myself. Here's what I came up with:

It seems, my first thought [that it comes from its JavaScript roots] was correct.

'\/' === '/' in JavaScript, and JSON is valid JavaScript. However, why are the other ignored escapes (like \z) not allowed in JSON?

The key for this was reading http://www.cs.tut.fi/~jkorpela/www/revsol.html, followed by http://www.w3.org/TR/html4/appendix/notes.html#h-B.3.2. The feature of the slash escape allows JSON to be embedded in HTML (as SGML) and XML.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.