標籤:證明 理解 append span ons status 載入 stat json解析
SyntaxError: JSON.parse: unexpected character at line 1 column 2 of the JSON data
我在使用$.parseJSON解析後台返回的JSON的資料時,出現了這樣的錯誤,我還以為返回的JSON格式出現了錯誤,因為JSON要求格式非常嚴格。最後發現JSON格式沒有太明顯的格式錯誤,我使用fastJSON來產生的JSON格式資料,原來是因為資料已經是一個JavaScript對象了,所以在進行解析就會出錯了
我直接將這段資料alert出來,並使用typeof檢驗其類型,發現是一個Object,這就證明了資料已成為了JavaScript對象了。所以,我直接使用(不用什麼parseJSON解析了)這段資料進行相應的處理就不會出錯
$.ajax({ url : ‘commentAction_showComment‘, type : ‘POST‘, data:{ titleid: $(comment_this).attr(‘data-id‘), currPage : currPage, }, beforeSend : function (jqXHR, settings) { $(‘.comment_list‘).eq(index).append(‘<dl class="comment_load"><dd>正在載入評論</dd></dl>‘); }, success : function (response, status) { var json_comment = response; }, });
也許是我對jQuery的parseJSON方法理解錯誤使用不當,或者是該用其他的方法處理?
jQuery解析JSON出現SyntaxError: JSON.parse: unexpected character at line 1 column 2 of the JSON data