我知道这是一个流行的问题,我已经在 Stack Overflow 和其他网站(包括数据表网站)上阅读了所有类似的问题。
澄清一下,我正在使用
我还确保正确接收了 JSON 数组:
[{"name_en":"hello","phone":"55555555"},{"name_en":"hi","phone":"00000000"}]
我的 HTML 表如下所示:
<table id="customer_table">
<thead>
<tr>
<th>Name</th>
<th>Phone</th>
</tr>
</thead>
</table>
这是我的 document.ready
函数:
$(document).ready(function(){
//$('#customer_table').DataTable();
$('#customer_table').DataTable( {
"ajax": 'json',
"dataSrc": "",
"columns": [
{ "data": "email" },
{ "data": "name_en" }
]
});
});
我得到的错误是
未捕获的 TypeError: 无法读取未定义的属性“ length”