我從服務器做一個Ajax請求後,下面的響應:使用JSON響應
{"error":false,"success":true}
我的Ajax代碼:
$.ajax({
url: '/update',
type: 'post',
data: $(this).serialize(),
success: function(response) {
alert(response)
},
error: function() {
alert('An error occured, form not submitted.');
}
});
,而不是提醒整個響應我要提醒在這種情況下,「成功」的價值將是真實的。這個怎麼做?
你必須解析JSON到一個JavaScript對象:http://stackoverflow.com/questions/4935632/how-to-parse-json-in-javascript –