为了账号安全,请及时绑定邮箱和手机立即绑定

数据表警告表 id=datatables-example - 无效的 json 响应

数据表警告表 id=datatables-example - 无效的 json 响应

PHP
海绵宝宝撒 2022-10-22 15:21:15
在这里我是新手ajax DataTables。我正在尝试connect我的database和. 但我得到了这个错误:fetch recordsdataTabledatatables warning table id=datatables-example - invalid json response有关此错误的更多信息,请参阅 http://datatables.net/tn/1我遵循了名为 的教程web lesson,以防我试图在互联网上找到解决方案但没有帮助我解决我的问题。这是我的HTML片段:   <table id="datatables-example" class="table table-striped table-bordered" width="100%" cellspacing="0">      <thead>           <tr>             <th>Appointment ID</th>             <th>Doctor Name</th>             <th>Specialization</th>                         <th>Patient Name</th>             <th>Fees</th>             <th>Appointment Date</th>             <th>Appointment Time</th>             <th>Status</th>             <th class="text-right">Action</th>           </tr>      </thead>  </table>以下是Ajax片段:<script>$(document).ready(function() {load_data();function load_data(){   var datatable=  $('#datatables-example').DataTable({       "processing": true,       "serverSide": true,         "order" :[],        "ajax" : {           url: "sidebar/apt_table admin.php", // Url to which the request is send           method: "POST",             // Type of request to be send, called as method    }    });}});</script>
查看完整描述

2 回答

?
开满天机

TA贡献1786条经验 获得超13个赞

要实现服务器端 ajax 数据表,您的脚本应该返回 json 只有您发送带有一些<tr><td>

参考:https ://datatables.net/examples/data_sources/server_side

在上面的示例中,仅提供 json 输出。

所以,试着修复你的apt_table admin.php


查看完整回答
反对 回复 2022-10-22
?
慕尼黑的夜晚无繁华

TA贡献1864条经验 获得超6个赞

试试这个小调试(在“post”末尾检索逗号)

"ajax" : {
           url: "sidebar/apt_table admin.php",
           method: "POST"
           }


查看完整回答
反对 回复 2022-10-22
  • 2 回答
  • 0 关注
  • 97 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信