gpt4 book ai didi

javascript - 在数据表ajax调用成功时调用一个函数

转载 作者:IT王子 更新时间:2023-10-29 03:22:31 24 4
gpt4 key购买 nike

是否有可能在数据表 ajax 调用成功时调用 javascript 函数。这是我尝试使用的代码,

var oTable = $('#app-config').dataTable(
{
"bAutoWidth": false,
"bDestroy":true,
"bProcessing" : true,
"bServerSide" : true,
"sPaginationType" : "full_numbers",
"sAjaxSource" : url,
"fnServerData" : function(sSource, aoData, fnCallback) {
alert("sSource"+ sSource);
alert("aoData"+ aoData);
$.ajax({
"dataType" : 'json',
"type" : "GET",
"url" : sSource,
"data" : aoData,
"success" : fnCallback
});
}

有没有可能有类似的东西,

success : function(){
//.....code goes here
}

而不是“成功”:fnCallback ------> 这是 AJAX 调用的最后一行。在这个函数中,我想检查从服务器端发送的值。在此先感谢您的帮助....

最佳答案

你可以使用 dataSrc :

这里是datatables.net的一个典型例子

var table = $('#example').DataTable({
"ajax": {
"type" : "GET",
"url" : "ajax.php",
"dataSrc": function ( json ) {
//Make your callback here.
alert("Done!");
return json.data;
}
},
"columns": [
{ "data": "name" },
{ "data": "position" },
{ "data": "office" },
{ "data": "extn" },
{ "data": "start_date" },
{ "data": "salary" }

]
} );

关于javascript - 在数据表ajax调用成功时调用一个函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15786572/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com