dqd78456 2017-01-21 16:05
浏览 153
已采纳

Laravel 5.3 API分页

i'm working on an API, and i'm stuck at pagination first i should send only first 10 records later based on the limit value passed by user i should send the next 10 records

so for i did this

//search Drivers
public function getSearchList($limit) 
{
    //dd($limit);
    $drivers = Driver::paginate($limit)
               ->select('id','first_name','last_name','phone_number','registration_id')
               ->orderBy('first_name', 'asc')
               ->get();

    return Response::json([
        'data' => $drivers->all()
    ]);
}

but i'm getting error on requesting http://localhost:8000/api/v1/search-list/10

BadMethodCallException in Macroable.php line 74:
Method select does not exist.

i thing i'm not doing it right

looking forward for much needed help

thank you

  • 写回答

2条回答 默认 最新

  • duanjumie8753 2017-01-21 16:08
    关注

    You should use paginate() method instead of get():

    $drivers = Driver::select('id', 'first_name', 'last_name', 'phone_number', 'registration_id')
               ->orderBy('first_name', 'asc')
               ->paginate($limit);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?