数据表警告:表 id=table_especie - 为第 0 行第 0 列请求的未知参数“0”



我知道这个问题被问了数百次,但我认为我的情况非常具体,需要了解 jQuery 的人来提供帮助,或者至少以前见过这个!

我有这段代码来构建一个名为"especie:

.HTML

<table class="table" id="table_especie">
     <thead>
      <tr>
       <th></th>
       <th></th>
      </tr>
     </thead>
     <tbody>
     </tbody>
</table>

脚本 JS:

var tableEspecie= $('#table_especie').DataTable({
    "paging":   false,
    "info":     false,
    "order": [
        [2, "asc" ],
        [3, "asc"],
        [1, "asc"]
    ],
    "columnDefs": [
        { "visible": false, "targets": 0 },
        { "visible": false, "targets": 2 },
        { "visible": false, "targets": 3 }
    ],
    "drawCallback": function () {
        var api = this.api();
        var rows = api.rows( {page:'current'} ).nodes();
        var last=null;
        api.column(2, {page:'current'} ).data().each( function ( especie, i ) {
            if ( last !== especie) {
                $(rows).eq( i ).before(
                    '<tr class="especie info"><td colspan="4">'+especie+'</td></tr>'
                );
                last = especie;
            }
        } );
        $("#table_especie thead").remove();
        $("#table_especie tfoot").remove();
    }
});
var populateEspecieShowName = function(data) {
    $('#animal_especie_name').text(data[0].name);
};

var populateEspecieTable = function(data) {
    var animais = [];
    $.each(data, function(id_animal, animal){
        animais.push([
            animal.id_animal,
            animal.nome_animal + ': ' + '<br>' + animal.notas_animal,
            animal.foto_animal
        ]);
    });
    $('#table_especie').dataTable().fnClearTable();
    $('#table_especie').dataTable().fnAddData(animais);
    $('#table_especie').dataTable().fnDraw();
};
$('#table_especie tbody').on( 'click', 'tr', function () {
    var animalId = $('#table_especie').DataTable().row(this).data();
    if (animalId !== undefined)
        $.route('animal/' + animalId[0]);
});
$('#table_especie_search').keyup(function(){
    $('#table_especie').DataTable().search($(this).val(), false, true).draw() ;
});

基本上,它使用数据库中的数据构建表!我收到错误(数据表警告:表 id=table_especie - 第 0 行第 0 列的请求未知参数"0"。有关此错误的更多信息,请参阅每次从表"especies"转到表"especie"时 http://datatables.net/tn/4(。该错误听起来像是"especie"有问题。我应该更改什么才能消除错误?它仍然构建表,但我之前收到此错误。谢谢!!!

解决方案:

"columnDefs": [{
    "defaultContent": "-",
    "targets": "_all"
}],

相关内容

最新更新