我想每隔3秒刷新一次表。我将感谢你的帮助。我正在使用相同的页面向数据库添加新记录。它没有为刷新页面查看他们刚刚保存的记录做任何逻辑。
var table = $(".customer-table").dataTable({
"sort": false,
"ajax": {
"url": "{{url('/brah/brah')}}",
"contentType": "application/json",
"type": "GET",
},
"columns": [
{"data": "created_at"},
{
"data": null,
render: function (data, type, row) {
var details = row.first_name + " " + row.last_name;
return details;
}
}
]
});
答案 0 :(得分:0)
您需要将dataTable
替换为DataTable
。
然后这应该是你的解决方案:
var table = $(".customer-table").DataTable({}); /* fill in your attributes */
setInterval( function () {
table.ajax.reload();
}, 3000 );