Why dosen't JSON.parse parse this:
{
"things1": "[{\"stuff1\":\"data1\"}]"
}
When I enter this
JSON.parse('{ "things1": "[{\"stuff1\":\"data1\"}]" }')
I get:
Uncaught SyntaxError: Unexpected token s
It seems "[{\"stuff1\":\"data1\"}]" is properly escaped.
things1attribute points to a string that starts with[{and interrupts then. Where did you get it from?