2017-01-08 7 views
3

エラーが発生しました。 "DataTables warning:table id = example - 行1、列1に未知パラメータ '1' AJAX APIからデータをロードするJSONは、バックエンドから受信呼び出すときにこのエラーについては、「http://datatables.net/tn/4を参照してください。テーブルのデータが移入されているため DataTables warning:table id = example - 行1、列1に不明なパラメータ '1'を要求しました

[{"CustomerName":"Dinesh","product":"23234","perticulars":"wrwer","AddressOfCustomer":"wrew`","ContactNumbers":"jhkjhb"}, {"CustomerName":"dd","product":"dfsdfs","perticulars":"fsdfs","AddressOfCustomer":"sdfsdf","ContactNumbers":"fsfsf"}, {"CustomerName":"Pratik","product":"toothbrush","perticulars":"6 inch","AddressOfCustomer":"shreedhama white rose","ContactNumbers":"9949634396"}] 

以下のスニペットのdiv HTMLのタグは以下のとおりであるようです。

  <table id="example" class="display" align="center" vertical-align="middle"; cellspacing="0" width="100%"> 
     <thead> 
      <tr> 
       <th>Customer Name</th> 
       <th>Product</th> 
       <th>Perticulars</th> 
       <th>Address of customer.</th> 
       <th>Contact number</th> 
      </tr> 
     </thead> 
     <tbody> 
    <tr> 
     <td></td> 
     <td></td> 
     <td></td> 
     <td></td> 
     <td></td> 
    </tr> 
</tbody> 
     <tfoot> 
      <tr> 
       <th>Customer Name</th> 
       <th>Product</th> 
       <th>Perticulars</th> 
       <th>Address of customer.</th> 
       <th>Contact number</th> 
      </tr> 
     </tfoot> 
    </table> 

以下は、JSONあなたがオブジェクトのあなたのアレイを含むdataオブジェクトを持っている必要があります

 $.ajax({ 
      url:'AddQuotation', 
      type:'get',  
      success:function(data){ 
        alert(data); 

        var resultTable = $('#example').DataTable({ 

         "columns": [ 
         { data: "CustomerName" }, 
         { data: "product" }, 
         { data: "perticulars" }, 
         { data: "AddressOfCustomer" }, 
         { data: "ContactNumbers" } 
         ], 
         "destroy": true, 
         "dom": 'lrtip' 
         }); 
      resultTable.rows.add(data1).draw(); 
      dataSet = data;   
      }, 
      error:function(){ 
       alert('error'); 
      } 
      }); 
+0

これで進歩はありますか? –

答えて

1

からデータを移入しようとしているAjaxの私がやっているコールと成功の機能です。

{"data": [{"CustomerName":"Dinesh","product":"23234","perticulars":"wrwer","AddressOfCustomer":"wrew`","ContactNumbers":"jhkjhb"}, {"CustomerName":"dd","product":"dfsdfs","perticulars":"fsdfs","AddressOfCustomer":"sdfsdf","ContactNumbers":"fsfsf"}, {"CustomerName":"Pratik","product":"toothbrush","perticulars":"6 inch","AddressOfCustomer":"shreedhama white rose","ContactNumbers":"9949634396"}]} 

A取り組んDEMO

関連する問題