我想使用ajax重新加载数据表而不刷新整个页面

时间:2017-05-20 10:26:36

标签: javascript jquery ajax

我想每隔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;
                    }
}

            ]
        });

1 个答案:

答案 0 :(得分:0)

您需要将dataTable替换为DataTable。 然后这应该是你的解决方案:

var table = $(".customer-table").DataTable({}); /* fill in your attributes */
setInterval( function () {
    table.ajax.reload();
}, 3000 );

https://datatables.net/reference/api/ajax.reload()