📜  DataTables 警告:表 id=example-dt - JSON 响应无效. - Javascript代码示例

📅  最后修改于: 2022-03-11 15:03:19.338000             🧑  作者: Mango

代码示例1
Plain text12345678910$(document).ready(function () {   $('#example').DataTable({           "processing": true,           "serverSide": true,           ajax: {               url: "/../../admin/server-side-data.php",               type: "GET"           }       });   });