我想用Laravel框架将数据输入到dataTables。但后来我得到了错误。
我的剧本
<script type="text/javascript">
$(document).ready(function(){
$('#tabled').DataTable({
"ajax": {
url: "/bawan",
type: "GET",
dataType: "json"
},
"columns":[
{"data":"id"},
{"data":"title"},
{"data":"nama"},
],})})
这是控制器。
function bawan(){
$datan = pekael::join('informasi', 'informasi.user_id', '=', 'pekaels.id')->select('informasi.*', 'pekaels.*')->get();
$data = array('data'=>$datan);
return response()->json($datan);
}
表格视图
<table class="table table-striped" cellspacing="0" width="100%" id="tabled" align="center">
<thead>
<tr>
<th>ID</th>
<th>Title</th>
<th>Author</th>
</tr>
</thead>
</table>
我对框架很陌生,有人能告诉我我的错误在哪里吗?