我理解这是一个受欢迎的问题,我已经在Stack Overflow和其他网站(包括datatables网站)上阅读了所有类似的问题.
为了澄清,我正在使用
> PHP Codeigniter
> Materliazecss
我还确保我正确地收到了JSON数组:
[{"name_en":"hello","phone":"55555555","email":"a.shouman","facebook":"https:\/\/www.facebook.com"},{"name_en":"Mahfouz","phone":"00000000","email":"m.mahfouz","facebook":null},{"name_en":"Abdelrahman",{"name_en":"ayman test","phone":"55554444",{"name_en":"Abdelrahman Mossad Shouman Bootstrap","phone":"12345678","email":"a.shouman@mail.com","facebook":"https:\/\/www.facebook.co"},{"name_en":"a.sharara","email":"a.sharara","facebook":""}]
我的HTML表格如下所示:
<table id="customer_table"> <thead> <tr> <th>Name</th> <th>Contact</th> <th>Email</th> <th>Facebook</th> </tr> </thead> </table>
这是我的document.ready功能:
$(document).ready(function(){ //$('#customer_table').DataTable(); $('#customer_table').DataTable( { "ajax": 'json',"dataSrc": "","columns": [ { "data": "email" },{ "data": "facebook" },{ "data": "name_en" },{ "data": "phone" } ] }); });
我得到的错误是
Uncaught TypeError: Cannot read property ‘length’ of undefined
解决方法
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。