sAjaxSource參數,值是url。table會發送ajax請求,從服務器端獲取數據。服務器端返回的數據應該是一個可以被轉換成JSON對象的JSON字符串。這個字符串必須嚴格符合JSON格式的要求。否則會出錯。該數據對象該對象的key應該是“aaData”,例如:
Js代碼:
{
"aaData":
{
"columnA":"valueA",
"columnB":"valueB",
...
}
}
bServerSide參數,設置成true,表示使用服務器端處理數據。當排序時,會直接到後台查詢數據,直接顯示,不會在前端進行排序操作。
fnServerData參數,用來自定義函數,代替DataTables插件默認的從服務器端查詢數據的函數。默認的函數如下:
原文參考自站長網:http://www.software8.co/wzjs/jquery/3314.html
Js代碼:
/**
* @param {string} sSource HTTP source to obtain the data from (sAjaxSource)
* @param {array} aoData A key/value pair object containing the data to send
* to the server
* @param {function} fnCallback to be called on completion of the data get
* process that will draw the data on the page.
* @param {object} oSettings DataTables settings object
*/
"fnServerData": function ( sUrl, aoData, fnCallback, oSettings ) {
oSettings.jqXHR = $.ajax( {
"url": sUrl,
"data": aoData,
"success": function (json) {
if ( json.sError ) {
oSettings.oApi._fnLog( oSettings, 0, json.sError );
}
$(oSettings.oInstance).trigger('xhr', [oSettings, json]);
fnCallback( json );
},
"dataType": "json",
"cache": false,
"type": oSettings.sServerMethod,
"error": function (xhr, error, thrown) {
if ( error == "parsererror" ) {
oSettings.oApi._fnLog( oSettings, 0, "DataTables warning: JSON data from " + "server could not be parsed. This is caused by a JSON formatting error." );
}
}
});
},
我們可以用這個參數來自定義ajax請求,也可以對獲取到的數據進行處理等操作。例如:
服務器端之返回表格的數據對象,沒有用“aaData”作為數據的key,我們就可以在我們定義的回調函數裡面,給數據加上“aaData” key。
fnServerParams參數,用來發送額外的數據給服務器。例如:
Js代碼:
$('#example').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "scripts/server_processing.php",
"fnServerParams": function ( aoData ) {
aoData.push( { "name": "more_data", "value": "my_value" } );
}
});