使用html属性初始化DataTables

时间:2017-08-19 21:57:56

标签: html5 datatables

我有桌子

<table class="table dataTable table-striped table-bordered" 
           cellspacing="0" width="100%"
           data-toggle="table"
           data-processing="true"
           data-serverSide="true"
           data-ajax="@Url.Action("GetUsers", "Users")"
           data-type="post"
           data-page-length="25" 
           data-order="[[0,&quot;asc&quot;]]"
           >
        <thead>
            <tr>
                <th>ID</th>
                <th>Role</th>
                <th>User name</th>
                <th>Date registered</th>
                <th></th>
            </tr>
        </thead>
    </table>

我的js,其中init表

$(document).ready(() => {
let table = $('[data-toggle="table"]');
if (table.length > 1) {
    table.DataTable();
}

});

我看到请求ajax到GetUsers,但没有参数。我该怎么办才能修好它?我应该使用更多的html属性,或者我应该使用js?

0 个答案:

没有答案