在此先感謝您的幫助。我是JSON的新手,我一直試圖使用$ .getJSON填充一些表單字段,但沒有運氣。
我開始砍件,直到我離開只是爲了測試從服務器我的迴應(我的服務器提供時,下面列出的URL在瀏覽器中查看JSON):
$(document).ready(function(){
$('#button').live('click', function(){
$.getJSON('http://localhost:8000/core/api/master-assembly/16', function(data) {
// alert(data); // uncomment for debug
$('#showdata').html("<p>item1="+data.afAgeCounter+" item2="+data.afWordCounter+" item3="+data.idNumber+"</p>");
});
});
});
我的JSON數據看起來是像:
{"success":true,"data":{"afWordCounter":123,"afAgeCounter":456,"idNumber":789, ...
當我運行該腳本,我得到的輸出:
物品1 =未定義ITEM2 =未定義的項目3 =不確定
如果我取消了
alert(data);
所有我得到的回報是[對象的對象]
那麼這裏給人?
再次感謝:)
不能提醒的對象,但是,您可以使用控制檯.log(data)並在JavaScript調試器(如Firebug)中查看對象。 – jholloman 2012-07-26 21:50:26