【发布时间】:2016-02-12 09:35:10
【问题描述】:
我希望能够从使用 AjaxSource 传递到 DataTables 的动态信息创建一个表,而不是使用 DataTables(jQuery Javascript 库的一个插件)从文档中读取它
脚本:
$(document).ready(function() {
var oTable;
var oTable = $('#yourTable').DataTable( {
"processing": true,
"serverSide": true,
"ajax":{
url :"${contextPath}/search/performDeviceSearchRest.do", // json datasource
type: "get", // method , by default get
dataType: 'json',
error: function (jqXHR, textStatus, errorThrown) { alert(errorThrown) }
}
} );
});
JSP
<table cellpadding="0" cellspacing="0" border="0" class="display normaltable" id="yourTable">
<thead>
<tr>
<th ><fmt:message key="license.number"/></th>
<th ><fmt:message key="Product.name" /></th>
<th ><fmt:message key="list.category" /></th>
<th ><fmt:message key="list.manufacturer"/></th>
<th ><fmt:message key="list.country"/></th>
<th ><fmt:message key="list.retailer"/></th>
</tr>
<tr class="thefilters">
<td ><input name="" size="" maxlength="" id="" value="" type="text"/></td>
<td ><input name="" size="" maxlength="" id="" value="" type="text"/></td>
<td ><input name="" size="" maxlength="" id="" value="" type="text"/></td>
<td ><input name="" size="" maxlength="" id="" value="" type="text"/></td>
<td ><input name="" size="" maxlength="" id="" value="" type="text"/></td>
<td ><input name="" size="" maxlength="" id="" value="" type="text"/></td>
</tr>
</thead>
<tfoot>
<tr>
<th><fmt:message key="license.number"/></th>
<th><fmt:message key="Product.name"/></th>
<th><fmt:message key="list.category" /></th>
<th><fmt:message key="list.manufacturer"/></th>
<th><fmt:message key="list.country"/></th>
<th><fmt:message key="list.retailer"/></th>
</tr>
</tfoot>
</table>
如果我只是把网址放在浏览器中${contextPath}/search/performDeviceSearchRest.do
我知道了,所以一切似乎都很好
{"products":[{"licenceNumber":"MyDeviceNumber","productName":"MyproductName","category":"Mycategory","manufacturer":"Mymanufacturer","countries":"MyCountries","retailer":"Myretailer"}]}
但在数据表上我只看到 Processing...
http://debug.datatables.net/ewenav
我在控制台中收到此错误:Uncaught TypeError: Cannot read property 'length' of undefined
在**for ( var i=0, ien=data.length ; i<ien ; i++ ) {**的行中
/**
* Data the data from the server (nuking the old) and redraw the table
* @param {object} oSettings dataTables settings object
* @param {object} json json data return from the server.
* @param {string} json.sEcho Tracking flag for DataTables to match requests
* @param {int} json.iTotalRecords Number of records in the data set, not accounting for filtering
* @param {int} json.iTotalDisplayRecords Number of records in the data set, accounting for filtering
* @param {array} json.aaData The data to display on this page
* @param {string} [json.sColumns] Column ordering (sName, comma separated)
* @memberof DataTable#oApi
*/
function _fnAjaxUpdateDraw ( settings, json )
{
// v1.10 uses camelCase variables, while 1.9 uses Hungarian notation.
// Support both
var compat = function ( old, modern ) {
return json[old] !== undefined ? json[old] : json[modern];
};
var draw = compat( 'sEcho', 'draw' );
var recordsTotal = compat( 'iTotalRecords', 'recordsTotal' );
var rocordsFiltered = compat( 'iTotalDisplayRecords', 'recordsFiltered' );
if ( draw ) {
// Protect against out of sequence returns
if ( draw*1 < settings.iDraw ) {
return;
}
settings.iDraw = draw * 1;
}
_fnClearTable( settings );
settings._iRecordsTotal = parseInt(recordsTotal, 10);
settings._iRecordsDisplay = parseInt(rocordsFiltered, 10);
var data = _fnAjaxDataSrc( settings, json );
for ( var i=0, ien=data.length ; i<ien ; i++ ) {
_fnAddData( settings, data[i] );
}
settings.aiDisplay = settings.aiDisplayMaster.slice();
settings.bAjaxDataGet = false;
_fnDraw( settings );
if ( ! settings._bInitComplete ) {
_fnInitComplete( settings, json );
}
settings.bAjaxDataGet = true;
_fnProcessingDisplay( settings, false );
}
【问题讨论】:
-
您的浏览器控制台是否出现任何错误?
标签: javascript jquery spring-mvc datatable datatables