doutun1875 2017-06-22 20:52
浏览 95
已采纳

Laravel:分页只返回第一块

I pull in the paginated data via AJAX requests in my Laravel application. This works fine for the first chunk. For the following however, it's only passing one column (the id).

What is the problem?

The relevant code:

Route::get('contacts', function (Request $request) {
    return buildQuery($request, User::class)->simplePaginate(50);
});

function buildQuery(Request $request, $model) {
    $query = DB::table('users')->select('id as ID');
    $properties = $request->all();

    $searchString = "";
    if (in_array('q', array_keys($properties)) && $properties['q']) {
        $searchString = $properties['q'];
        $query->orWhere('id', 'like', '%'.$searchString.'%');
    }

    foreach ($properties as $property => $value) {
        if ($property == "id" || $property == "q")
            continue;

        if (in_array($property, array_keys($model::$labels))) {
            $query->addSelect($property.' as '.$model::$labels[$property]);

            if ($value == "desc" || $value == "asc")
                $query->orderBy($property, $value);

            if ($searchString)
                $query->orWhere($property, 'like', '%'.$searchString.'%');
        }
    }

    return $query;
}
  • 写回答

1条回答 默认 最新

  • donglu5728 2017-06-22 21:09
    关注

    Its because the query params are not appended to the subsequent pagination requests.

    Update your logic inside the Route to:

    Route::get('contacts', function (Request $request) {
        return buildQuery($request, User::class)->paginate(50)->appends($request->all());
    });
    

    OR

    Route::get('contacts', function (Request $request) {
            return buildQuery($request, User::class)->simplePaginate(50)->appends($request->all());
        });
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 微信小程序跑脚本授权的问题
  • ¥100 房产抖音小程序苹果搜不到安卓可以付费悬赏
  • ¥15 STM32串口接收问题
  • ¥15 腾讯IOA系统怎么在文件夹里修改办公网络的连接
  • ¥15 filenotfounderror:文件是存在的,权限也给了,但还一直报错
  • ¥15 MATLAB和mosek的求解问题
  • ¥20 修改中兴光猫sn的时候提示失败
  • ¥15 java大作业爬取网页
  • ¥15 怎么获取欧易的btc永续合约和交割合约的5m级的历史数据用来回测套利策略?
  • ¥15 有没有办法利用libusb读取usb设备数据