我正在使用带有struts 2的jQuery DataTables。
以前我使用的是struts1版本,所以这段代码运行正常但是当我用版本2升级strut时。这是DataTables无效。
实际上某些参数没有正确设置并且认为参数没有被发送到服务器。
在服务器上给出以下错误:
意外异常捕获设置'iDisplayLength'on类错误设置表达式'iDisplayLength',其值为['10',]
意外异常在类错误设置表达式'iDisplayStart'上设置了'iDisplayStart',其值为['0',]
jQuery代码就像
$('#dataTable').dataTable({
"sAjaxSource": "listData.action",
"sServerMethod": "POST",
"bFilter": false,
"bSort": true,
"bProcessing":true,
"bServerSide":true,
"bSortClasses": false,
"sDom": '<"oTableGenerated"lfirp>t',
"bStateSave": true,
"aaSorting": [[ 0, "desc" ]],