我很困惑如何重新加载我的dataTable。我不知道它是如何工作的,
如何每5秒刷新/重新加载数据表
这是我的代码
var table = $('#example').DataTable(
{
"searching": true,
"ordering": false,
"info": true,
"paging": true,
"dom": '<"top">rt<"bottom"p><"clear">',
"columns":
[
{data : "subj"},
{data : "message"},
{data : "date"},
{data : "id"},
],
"rowId": 'id'
});
//i want to update my table every 5seconds to view the added data on my database
setInterval( function ()
{
table.ajax.reload();
}, 5000 );
我已经将table.ajax.reload();
更改为$('#example').DataTable().ajax.reload();
我遇到了相同的错误table id=example - Invalid JSON response
我已经check this代码了,但是我不知道它是如何工作的