0
私はlaravelでのDataTableを使用し、警告メッセージの下に取得:のDataTable警告:テーブルID = DataTables_Table_0 - Ajaxのエラー
のDataTable警告:= DataTables_Table_0テーブルID - Ajaxのエラー。このエラーの詳細 情報については、以下を参照してくださいhttp://datatables.net/tn/7
私はデータベースここ
私のコントローラで私のテーブルからJSONデータを取得することはできません
public function data()
{
// return Datatables::of(Employee::select("*"))->make(true);
$users = Employee::select(['id','employee_name','gender', 'join_date', 'identity_no', 'birthdate', 'idaddress']);
return Datatables::of($users)->make();
}
ルート
Route::any("data", "[email protected]");
モデル
私が間違っているのpublic function attributeLabels()
{
return [
"id" => "id",
"nik" => "Nik",
"employee_name" => "Nama Pegawai",
"gender" => "Jenis kelamin",
"join_date" => "Tgl bergabung",
"identity_no" => "No identitas",
"birthdate" => "Tgl Lahir",
"idaddress" => "Alamat",
];
}
表
<table class="table table-bordered" datatable="{{ url("hr/employee/data") }}">
<thead>
<tr>
<th dt-field="id"> {{ $model->label("id") }} </th>
<th dt-field="nik"> {{ $model->label("nik") }} </th>
<th dt-field="employee_name"> {{ $model->label("employee_name") }} </th>
<th dt-field="gender"> {{ $model->label("gender") }} </th>
<th dt-field="join_date"> {{ $model->label("join_date") }} </th>
<th dt-field="identity_no"> {{ $model->label("identity_no") }} </th>
<th dt-field="birthdate"> {{ $model->label("birthdate") }} </th>
<th dt-field="idaddress"> {{ $model->label("idaddress") }} </th>
<th dt-col="#dt-action" sort="false" search="false"> </th>
</tr>
</thead>
?これをどうやって解決するのですか?
私も雄弁を使っていましたが、まだ返されていません。戻り値Datatables :: of(Employee :: select( "*")) - > make(真); ' – Aslam
次のコード行にnikフィールドも追加してください。 $ users = Employee :: select(['id'、 'employee_name'、 'gender'、 'join_date'、 'identity_no'、 'birthdate'、 'idaddress']); –