Possible Duplicate:
How to parse JSON in JavaScript如何解析漂亮JSON在JavaScript
如果您JSON格式是這樣的:
{
"id": 10,
"user": {
"email": "example.com"
}
}
什麼是解析到這一點在JavaScript中JSON對象的標準呢?用例是如果用戶將JSON輸入到textarea中,則將其解析出來。
我開始這樣做,但不希望走這條路似乎已經有一個強大的/標準溶液:
JSON.parse($('#the-textarea').val().replace(/^\s+/mg, '').replace(/\n/g, '')); // not quite right yet, still not parsable...
'JSON.parse()來'?不應該有任何需要不喜歡它。 – 2012-08-02 22:12:14
['$ .parseJSON()'](http://api.jquery.com/jQuery.parseJSON/)? – 2012-08-02 22:12:45
[沒有像「JSON對象」](http://benalman.com/news/2010/03/theres-no-such-thing-as-a-json/)。 – 2012-08-02 22:35:17