Laravel顺序当放入表时数据被洗牌

时间:2018-10-17 03:28:45

标签: laravel datatable

我正在使用laravel orderby desc,以便可以查看最新数据。但是,当我使用数据表将其放到表上时,它不是desc,而是经过改组。

这是来自控制器的查询

$jobs['jobs'] = jobs::where('isArchive', '0')->orderBy('id', 'desc')->get();

这是我退货时的结果,如您所见,orderBy正常工作。

enter image description here

这是我放置数据的刀片。如您所见,它是asc,但这仅是因为我们只有3个数据。但是当我们有很多数据时 enter image description here

查看代码:

<table id="jobTable" class="table datatable table-hover" cellspacing="0" width="100%">
<thead>
    <tr>
        <th>Title</th>
        <th class="text-center">Action</th>
    </tr>
</thead>
<tbody>
    @foreach($jobs['jobs'] as $job)
    <tr>
        <td>  {{ $job['title'] }} </td>
        <td class="text-center">
            <button onclick=" job_id={{ $job['id'] }}; chooseUser({{$job['id']}});" data-toggle="modal" data-target="#encodeModal" class="btn btn-warning btn-sm faa-vertical animated-hover faa-slow"><span data-toggle='tooltip' title='Assign Recruitment Associate for {{ $job['title'] }}' class="fa fa-users" id="btn-view-applied"></span></button>

            <button onclick="viewApplied('{{$job['id']}}','{{$job['title']}}')" data-toggle="modal" data-target="#view-applied-jobs" class="btn btn-info btn-sm faa-vertical animated-hover faa-slow"><span data-toggle='tooltip' title='View Applicants That Applied in {{ $job['title'] }}' class="fa fa-check-square-o" id="btn-view-applied"></span></button>

            <a href=" {{ route('jobs.edit', $job['id']) }}  " class="btn btn-success btn-sm faa-tada animated-hover faa-fast"><span class="fa fa-edit"></span></a>

            <button onclick="thisArchive('{{route('jobs.archive', $job->id)}}', '{{$job->title}} job')" data-toggle="modal" data-target="#archiveModal" class="btn btn-danger btn-sm faa-ring animated-hover faa-slow"><span class="fa fa-archive"></span></button>
        </td>
    </tr>
    @endforeach
</tbody>

但是如果我删除表上的datatable类,(从  至 ),orderBy可以正常工作。

enter image description here

但是如果没有datable类,那么排序,搜索栏和分页也会被删除,从而留下一个简单的表

1 个答案:

答案 0 :(得分:0)

初始化数据表并禁用表中的排序:

$('#example').dataTable( {
  "ordering": false
} );