請您幫助我解決這個錯誤。 JTable中遺漏的類型錯誤:無法調用未定義JTable未捕獲類型錯誤:無法調用未定義的方法「數據」
阿賈克斯工作法「數據」我得到了一個有效的迴應,但它並不在表
獲取和顯示。請你幫幫我。另一方面,如果我腳本我把它放在sepearate文件,我怎麼能這樣稱呼它?
<div id="church_list" style="width: 600px;"></div>
<script type="text/javascript">
$(document).ready(function() {
//Prepare jTable
$('#church_list').jtable({
title: 'Church List',
paging: true,
pageSize: 20,
sorting: true,
defaultSorting: 'church_name ASC',
actions: {
listAction: server_path+'/superadmin/?a=listChurch'
},
fields: {
church_name: {
title: 'Church Name',
width: '30%'
},
church_city: {
title: 'Church City',
width: '20%'
},
church_state: {
title: 'Church State',
width: '20%'
},
payment_type: {
title: 'Payment Type',
width: '20%'
},
training_cost: {
title: 'Training Cost',
width: '20%'
}
}
});
//Load person list from server
$('#church_list').jtable('load');
});
</script>
所以這是在一些隨機插件內部錯誤,並且希望我們的數字出來? – adeneo
{「Result」:「OK」,「TotalRecordCount」:50,「Records」:[{「church_name」:「Test」,「church_city」:「Test」,「church_state」:「TEST」,「payment_type」 「Test」,「training_cost」:「10.00」}]} – user2617449
是的,我不知道它爲什麼會發生? – user2617449