Jquery-datatables插件接收的json数据格式应该是怎样

2024-12-25 07:44:31
推荐回答(1个)
回答1:

想使用datatable显示数据。假设只有“id”和“name”两个字段。后端用php的json_encode来返回字段。

$("#example").dataTable({

"bAutoWidth": false, //自适应宽度
"aaSorting": [[1, "asc"]],
"sPaginationType": "full_numbers",
"oLanguage": {
"sProcessing": "正在加载中......",
"sLengthMenu": "每页显示 _MENU_ 条记录",
"sZeroRecords": "对不起,查询不到相关数据!",
"sEmptyTable": "表中无数据存在!",
"sInfo": "当前显示 _START_ 到 _END_ 条,共 _TOTAL_ 条记录",
"sInfoFiltered": "数据表中共为 _MAX_ 条记录",
"sSearch": "搜索",
"oPaginate":
{
"sFirst": "首页",
"sPrevious": "上一页",
"sNext": "下一页",
"sLast": "末页"
}
}, //多语言配置

"bProcessing": true,
"bDestroy":true,
"bServerSide":true,
"sAjaxSource": "./testgaojing.php",
"aoColumns":
[
{ 'aaData': 'id' },
{ 'aaData': 'name' },
]
});