标签:gen als paginati pat 分页 json article turn http
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
标签:gen als paginati pat 分页 json article turn http
原文地址:https://www.cnblogs.com/kaka666/p/10217184.html