我正在研究数据表。我需要用AJAX调用填充我的数据表但是我无法这样做。 这是我的AJAX电话:
$('#call_analysis_basic_table').DataTable ({
"ajax": {
"url": "getBasicCallAnalysisData.json",
"type": "POST"
},
"columns": [
{ "data": "ANUMBER" },
{ "data": "BNUMBER" },
{ "data": "DATETIME" },
{ "data": "DURATION" },
{ "data": "IMEI" },
{ "data": "IMSI" },
{ "data": "CELL ID" },
{ "data": "OPR ID" },
{ "data": "MSC ID" },
{ "data": "FILE ID" }
]
});
数据表HTML代码:
<table id="call_analysis_basic_table" class="display" cellspacing="0" width="100%">
<thead style="background-color:#4d7496;color:#fff;">
<tr>
<th>aNumber</th>
<th>bNumber</th>
<th>datetime</th>
<th>duration</th>
<th>imei</th>
<th>imsi</th>
<th>cellID</th>
<th>oprid</th>
<th>msc_id</th>
<th>file_id</th>
</tr>
</thead>
</table>
预期的JSON响应:
{
"result": [
[
"3028540439",
"3222027076",
"2017-06-01 07:58:50.0",
"984",
"45113694289302",
"45113694289302",
"34546789606976",
"410-07-511-19601",
"1",
"1",
"1"
],
[
"3028540439",
"3224712938",
"2017-05-11 06:07:21.0",
"4",
"12962129644848",
"12962129644848",
"34469708781694",
"410-06-651-30213",
"1",
"1",
"1"
]
],
"success": true,
"error": "no error"
}
进行此调用后,来自服务器的响应响应,但响应未填充到数据表中。它告诉我这个错误
DataTables警告:table id = call_analysis_basic_table - 没有错误
任何提示,如何将此JSON响应填充到我的数据表?