自定义http变量
使用 DataTables 的服务器端处理选项时,向服务器发送额外信息通常很有用。这是通过使用
ajax.data
选项来完成的,可以使用两种不同的方式之一:
-
object
- 要发送到服务器的对象数据。 这对于向请求中添加静态数据非常有用 -
function
- 通过函数返回要发送到服务器的对象数据,参数为发送的数据,可以通过参数添加附加数据
本示例演示
ajax
的
ajax.data
作为函数将自定义的数据发送到服务器端。
姓名 | 职位 | 工作地点 | 年龄 | 入职时间 | 年薪 |
---|---|---|---|---|---|
姓名 | 职位 | 工作地点 | 年龄 | 入职时间 | 年薪 |
$('#dataTableExample').DataTable($.concatCpt('dataTable', {
"processing": true,
"serverSide": true,
"ajax": {
"url": "/employee/all",
"data": function (d) {
d.myKey = "myValue";
// d.custom = $('#myInput').val();
// ……
}
}
}));
<table class="table table-bordered table-hover dataTable table-striped w-full">
<thead>
<tr>
<th>姓名</th>
<th>职位</th>
<th>工作地点</th>
<th>年龄</th>
<th>入职时间</th>
<th>年薪</th>
</tr>
</thead>
<tfoot>
<tr>
<th>姓名</th>
<th>职位</th>
<th>工作地点</th>
<th>年龄</th>
<th>入职时间</th>
<th>年薪</th>
</tr>
</tfoot>
</table>
java代码
{
recordsFiltered: 57,
data: [
[
"李霞",
"系统架构师",
"北京",
"61",
"2011/04/25",
"¥320800"
],
[
"杜重治",
"会计",
"上海",
"63",
"2011/07/25",
"¥170750"
],
[
"陈锋",
"初级开发者",
"深圳",
"66",
"2009/01/12",
"¥86000"
],
[
"郑伯宁",
"高级JavaScript开发者",
"北京",
"22",
"2012/03/29",
"¥433060"
]
]
}