这是我的设置。
Javascript/jQuery:
$('#list').dataTable({
paging: false,
serverSide: true,
ajax: {
url: "/search/",
data: function (d) {
return $.extend({}, d, {
lid: Label.selectedId
});
}
}
});
HTML
<table id="list" class="table table-striped" width="100%">
<thead>
<tr>
<th>Title</th>
<th>First Name</th>
<th>Last Name</th>
<th>URL</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
JSON 响应
{"data": [["Test", "", "", ""]], "recordsTotal": 1, "draw": 1, "recordsFiltered": 1}
通过这样做手动调用它:
$('#list').DataTable().ajax.reload();
但是表没有变化。我已经用 DataTables 1.9 完成了很多次,没有任何问题——有什么想法吗?
更新
我发现如果我关闭serverSide
它,它会起作用。