2012-01-04 114 views
0

所以我試圖做一個簡單的AJAX調用(我第一次嘗試它),以返回MySQL表的字段中的最高值。我收到錯誤「Object of class DB_Result could not be converted to string」,我認爲這與序列化有關?簡單的AJAX調用返回數據

我試過,查詢後:$a = [query here], doing serialize($a), which gave me the output O:9:"DB_Result":1:{s:3:"res";i:0;}

我不知道這意味着什麼,但我正在尋找返回是一個int。

任何幫助表示讚賞:)

回答

1

使用json_encode在PHP中編碼您db_result

使用下面的代碼來獲取JSON結果:

$.ajax({ 
    type: "GET", 
    url: "", 
    processData: true, 
    data: {}, 
    dataType: "json", 
    complete: function(){ }, 
    success: function() {} 
});