top | item 7628512 (no title) alxeder | 12 years ago A JSON literal is also valid JSON. Therefore 4, "test" and true should be saveable without a object wrapper discuss order hn newest ajanuary|12 years ago To expand on that: only since RFC 7158, earlier versions required the root to be an array or object.So if you're generating json, it's advisable to wrap it so that parsers written according to the older specs won't choke on it.However, when parsing, like this, you want to try and accept values.
ajanuary|12 years ago To expand on that: only since RFC 7158, earlier versions required the root to be an array or object.So if you're generating json, it's advisable to wrap it so that parsers written according to the older specs won't choke on it.However, when parsing, like this, you want to try and accept values.
ajanuary|12 years ago
So if you're generating json, it's advisable to wrap it so that parsers written according to the older specs won't choke on it.
However, when parsing, like this, you want to try and accept values.