datatablesを利用中なのですが、
下記のエラーが出てどうにも行き詰まっております。
エラーメッセージにそってサイトを確認したのですが、要領をえません。
https://datatables.net/manual/tech-notes/4
知恵をお貸し願えればと思います。
エラーメッセージ
DataTables warning: table id=example - Requested unknown parameter '0' for row 0, column 0. For more information about this error, please see http://datatables.net/tn/4
html
1<table id="example" class="display" style="width:100%"> 2 <thead> 3 <tr> 4 <th>id</th> 5 <th>name</th> 6 <th>email</th> 7 <th>gakko</th> 8 <th>jikan</th> 9 <th>furigana</th> 10 <th>gakkomei</th> 11 <th>tel</th> 12 <th>r_date</th> 13 </tr> 14 </thead> 15 <tfoot> 16 <tr> 17 <th>id</th> 18 <th>name</th> 19 <th>email</th> 20 <th>gakko</th> 21 <th>jikan</th> 22 <th>furigana</th> 23 <th>gakkomei</th> 24 <th>tel</th> 25 <th>r_date</th> 26 </tr> 27 </tfoot> 28 </table>
javascript
1(function($) { 2 $(function() { 3 $(document).ready(function() { 4 $('#example').DataTable( { 5 "ajax": { 6 "url": $("#Url").val(), 7 "type": "POST", 8 "data":{ 9 'action' : 'ajax', 10 'nonce': $("#nonceval").val(), 11 'ajax02': 'true' 12 }, 13 "columns": [ 14 { "data": "email" }, 15 { "data": "furigana" }, 16 { "data": "gakko" }, 17 { "data": "gakkomei" }, 18 { "data": "id" }, 19 { "data": "jikan" }, 20 { "data": "name" }, 21 { "data": "r_date" }, 22 { "data": "tel" } 23 ] 24 } 25 } ); 26} ); 27 }); 28});
ajax使って通信を行いphpにてDBを参照しエンコードしています。
通信は出来ていて、下記のJSON値が帰ってきています。
帰ってきたJSONの値
json
1{ 2"data":[ 3{"id":"8","email":"hogehoge@hogehoge.com","gakko":"5","jikan":"1400","name":"hogehoge","furigana":"hogehoge","gakkomei":"hogehoge","tel":"0123456789","r_date":"2020-08-30 00:55:37"}, 4{"id":"9","email":"hogehoge@hogehoge.com","gakko":"13","jikan":"1500","name":"hogehoge","furigana":"hogehoge","gakkomei":"hogehoge","tel":"0123456789","r_date":"2020-08-30 01:26:21"}, 5{"id":"10","email":"hogehoge@hogehoge.com","gakko":"16","jikan":"1540","name":"hogehoge","furigana":"hogehoge","gakkomei":"hogehoge","tel":"0123456789","r_date":"2020-08-30 01:33:10"} 6] 7}
jsonの整形が間違っているのでしょうか。
解決策の教授を頂ければ幸いです。
追記
datatablesのバージョンは
1.10.19
になります。
あなたの回答
tips
プレビュー