我正在使用jTable插件創建表格窗體。它主要關注ASP或PHP MVC,但我試圖用javascript/html和mongo後端來實現它。如何在jQuery-jTable插件中加載JSON數據?
我經歷了整個jTable API documentation,我發現有可能將json schema api填充到表中,與flexigrid很相似。
代碼如下:
$(document).ready(function() {
$('#feeds-table').jtable({
title: 'Accounts',
pageSize: 15,
ajaxSettings: {
type: 'GET',
dataType: 'json'
},
actions: {
},
fields: {
id: {
key: true,
list: false
},
username: {
title: 'Username',
width: '10%'
},
email: {
title: 'Email',
width: '10%'
},
applications: {
title: 'Applications',
width: '10%'
},
sites: {
title: 'Sites',
width: '10%'
},
verticals: {
title: 'Verticals',
width: '10%'
},
roles: {
title: 'Roles',
width: '10%'
},
profiles: {
title: 'Record date',
width: '30%',
type: 'date',
create: false,
edit: false
}
}
});
});
如果有人能幫助我找出我應該使用URL屬性或者是那裏的API參考來獲取數據並顯示在表中的任何其他方法。請告訴我!