数据表将 JSON 数据添加到页脚 <tfoot>

Datatables adding JSON data to footer <tfoot>

我正在使用 datatables 以 JSON 格式显示一些数据,并且我在 JSON 的底部包含了查询总计,如下所示:

{
    "data": [
        {
            "id": "1",
            "provider_num": "381301",
            "provider_name": "COTTAGE GROVE COMMUNITY HOSPITAL",
            "261_total_bad_debts": "[=12=]",
            "271_medicare_bad_debts": ",275",
            "281_non_medicare_bad_debts": "$-79,275",
            "1_cost_to_charge_ratio": "0.703459",
            "291_cost_of_non_mcr_bad_debts": "$-55,767"
        }
    ],
    "total_bad_debts": 0,
    "total_medicare_bad_debts": 79275,
    "total_non_medicare_bad_debts": -79275,
    "total_cost_of_non_mcr_bad_debts": -55767
}

我对如何将它们添加到 table 的页脚感到有点困惑,因为之前我可以访问 php 变量目录,现在我将它们编码在JSON。如果有人对此有任何经验并在数据 table 的初始化中使用 footerCallback 那真的很棒。

提前致谢

您可以在 DataTables 页脚中使用来自 JSON 响应的数据,如下所示。

$('#example').dataTable( {
   'ajax': 'data/arrays.txt',
   'footerCallback': function( tfoot, data, start, end, display ) {    
      var response = this.api().ajax.json();
      if(response){
         var $td = $(tfoot).find('td');
         $td.eq(0).html(response['total_bad_debts']);
         $td.eq(1).html(response['total_medicare_bad_debts']);
         $td.eq(2).html(response['total_non_medicare_bad_debts']);
         $td.eq(3).html(response['total_cost_of_non_mcr_bad_debts']);
      }
   } 
});
$('#example').dataTable( {
       'ajax': 'data/arrays.txt',
       'footerCallback': function( row, data, start, end, display ) {    

            var api = this.api();
            var response = this.api().ajax.json();
            if (response) {

                $(api.column(3).footer()).html(
                    response.total_bad_debts
                );

                $(api.column(4).footer()).html(
                    response.total_medicare_bad_debts
                );

                $(api.column(5).footer()).html(
                    response.total_non_medicare_bad_debts
                );

                $(api.column(6).footer()).html(
                    response.total_cost_of_non_mcr_bad_debts
                );
            }
        } 
    });