laravel:手动分页 --paginate()方法

use Illuminate\Pagination\LengthAwarePaginator;
use Illuminate\Pagination\Paginator; 
$perPage = 10;            //每页显示数量
if ($request->has('page')) {
    $current_page = $request->input('page');
    $current_page = $current_page <= 0 ? 1 :$current_page;
} else {
    $current_page = 1;
}
$item = array_slice($Array, ($current_page-1)*$perPage, $perPage);//$Array为要分页的数组
$totals = count($Array);
$paginator =new LengthAwarePaginator($item, $totals, $perPage, $current_page, [
    'path' => Paginator::resolveCurrentPath(),
    'pageName' => 'page',
]);

return response()->json(['code'=> 200,'msg'=>'ok','data'=>$paginator]);

猜你喜欢

转载自blog.csdn.net/qq_39191303/article/details/80564135