html 带有Ajax数据的DataTables摘要页脚行
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 带有Ajax数据的DataTables摘要页脚行相关的知识,希望对你有一定的参考价值。
$(document).ready(function () {
myTable.DataTable({
ajax: {
url: '/order/items',
type: 'GET',
dataType: 'json',
data: {
orderId: orderId.val()
},
},
columns: [
{title: 'Description', data: 'description'},
{title: 'Quantity', data: 'quantity', className: 'text-right'},
{title: 'Weight', data: 'wgt', className: 'text-right', render: $.fn.dataTable.render.number( ',', '.', 0 )}
],
footerCallback: function( tfoot ) {
var response = this.api().ajax.json();
if(response){
var $th = $(tfoot).find('th');
$th.eq(5).html(response['userdata']['qtyNow']);
}
}
});
});
<div class="table-responsive">
<table id="myTable" class="table table-striped table-bordered table-hover">
<thead></thead>
<tbody></tbody>
<tfoot>
<tr>
<th></th>
<th></th>
<th></th>
</tr>
</tfoot>
</table>
</div>
以上是关于html 带有Ajax数据的DataTables摘要页脚行的主要内容,如果未能解决你的问题,请参考以下文章
使用带有 AJAX 数据源的 DataTables 的列名
带有 ajax 的 DataTables 1.10.6,为第 0 行请求未知参数 0
jquery dataTables 不显示数据显示 ajax 错误
Laravel 和 Datatables:Ajax 数据不使用来自 html 选择的新 ajax 参数刷新表
带有 AJAX 的数据表 - 如何与特定页面共享 URL?
DataTables 在 CRUD 操作上刷新 Django Ajax 数据