3

我正在使用 Laravel Datatable,排序不起作用,有人可以帮助我。

控制器

Table::select(array( DB::raw('table2.con_title'),
    DB::raw('........
Datatables::of(----)->make();

看法

.dataTable({ "bProcessing": true, "bServerSide": true, "sAjaxSource": ajaxurl,

"aoColumnDefs": [ { mData:'table2.con_title' , aTargets: [0]},.......

错误DataTables 警告(表 id = '-----'):从第 0 行的数据源请求未知参数 'table2.con_title'

4

2 回答 2

0

您需要确保您的表列正确映射到您的数据。

https://datatables.net/manual/tech-notes/4

于 2017-04-12T11:36:00.620 回答
0

最近我在使用 Laravel 数据表并遇到了类似的情况,数据正在加载到列中,但排序不起作用,我的数据表正在从多个数据库 (DB) 表中加载数据。以下是我的发现:

  • 确保根据文档https://laravel.com/docs/5.7/eloquent-relationships设置您的数据库表关系
  • 如果您使用的是 DB::raw($your_sql) - 请确保您在数据表列配置中引用正确的 DB 列名。例如:

        $sql_query = "
        SELECT
           id AS primary_key,
           first_name,
           last_name
        FROM
           Contacts           
          ";
    
         $data = collect(DB::select(DB::raw($sql_query)));
         $list = Datatables::of($data);
         $list->make(true); 
    
  • 在您的刀片文件中,像这样进行数据表列配置

            <table id="name-list">
            <thead>
                <tr>
                    <th>ID</th>
                    <th>First Name</th>
                    <th>Last Name</th>
                </tr>
            </thead>
            <tbody>
    
            </tbody>
            </table>
    
         $('#name-list').dataTable({
             "processing": true,
             "serverSide": true,
             "ajax": "{{route('path_to_your_server_code')}}",
             "columns": [
                   {data: 'primary_key', name: 'primary_key', orderable: true, searchable: true, visible: true},
                   {data: 'first_name', name: 'first_name', orderable: true, searchable: true, visible: true},
                   {data: 'last_name', name: 'last_name', orderable: true, searchable: true, visible: true}],
             "order":[[1, 'desc']]
        });
    
  • 如果您在 SQL 中使用 Eloquent-Relationships 并急切地加载多个关系(即多个 DB 表),请确保您通过 Eloquent-Relationships 引用 DB 列,例如relation.column_name。您的数据表列配置将如下所示:

         //column configuration
         {data: 'some_relation.db_column', name: 'some_relation.db_column', orderable: true, searchable: true, visible: true} 
    
         //complete example code
         $('#name-list').dataTable({
         "processing": true,
         "serverSide": true,
         "ajax": "{{route('path_to_your_server_code')}}",
         "columns": [
               {data: 'primary_key', name: 'primary_key', orderable: true, searchable: true, visible: true},
               {data: 'first_name', name: 'first_name', orderable: true, searchable: true, visible: true},
               {data: 'last_name', name: 'last_name', orderable: true, searchable: true, visible: true},
               {data: 'some_relation.db_column', name: 'some_relation.db_column', orderable: true, searchable: true, visible: true}],
         "order":[[1, 'desc']]
    });
    

我已经尝试了以上两种方法,并且在这两种情况下排序都对我有用,即使用 DB::raw($your_sql) 和 Eloquent-Relationships。

于 2019-03-07T10:04:12.620 回答