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]);
--------------------- 
https://blog.csdn.net/qq_39191303/article/details/80564135
 
                    
                     
                    
                 
                    
                
 
                
            
         
         浙公网安备 33010602011771号
浙公网安备 33010602011771号