Phân trang
1. Cách phân trang dựa trên Laravel ORM
illuminate/database
của Laravel cung cấp chức năng phân trang tiện lợi.
Cài đặt
composer require illuminate/pagination
Sử dụng
public function index(Request $request)
{
$per_page = 10;
$users = Db::table('user')->paginate($per_page);
return view('index/index', ['users' => $users]);
}
Phương thức instance của bộ phân trang
Phương thức | Mô tả |
---|---|
$paginator->count() | Lấy tổng số dữ liệu trang hiện tại |
$paginator->currentPage() | Lấy số trang hiện tại |
$paginator->firstItem() | Lấy số thứ tự của dữ liệu đầu tiên trong kết quả |
$paginator->getOptions() | Lấy các tùy chọn của bộ phân trang |
$paginator->getUrlRange($start, $end) | Tạo URL cho một phạm vi số trang được chỉ định |
$paginator->hasPages() | Kiểm tra xem có đủ dữ liệu để tạo nhiều trang không |
$paginator->hasMorePages() | Kiểm tra xem có trang tiếp theo không |
$paginator->items() | Lấy các mục dữ liệu trang hiện tại |
$paginator->lastItem() | Lấy số thứ tự của dữ liệu cuối cùng trong kết quả |
$paginator->lastPage() | Lấy số trang cuối cùng (không khả dụng trong simplePaginate) |
$paginator->nextPageUrl() | Lấy URL của trang tiếp theo |
$paginator->onFirstPage() | Kiểm tra xem trang hiện tại có phải là trang đầu tiên không |
$paginator->perPage() | Lấy số lượng dữ liệu trên mỗi trang |
$paginator->previousPageUrl() | Lấy URL của trang trước đó |
$paginator->total() | Lấy tổng số dữ liệu trong kết quả (không khả dụng trong simplePaginate) |
$paginator->url($page) | Lấy URL của trang được chỉ định |
$paginator->getPageName() | Lấy tên tham số truy vấn để lưu trữ số trang |
$paginator->setPageName($name) | Thiết lập tên tham số truy vấn để lưu trữ số trang |
Lưu ý
Không hỗ trợ phương thức$paginator->links()
Các thành phần phân trang
Trong webman, không thể sử dụng phương thức $paginator->links()
để hiển thị nút phân trang, nhưng có thể sử dụng các thành phần khác để hiển thị, chẳng hạn như jasongrimes/php-paginator
.
Cài đặt
composer require "jasongrimes/paginator:~1.0"
Backend
<?php
namespace app\controller;
use JasonGrimes\Paginator;
use support\Request;
use support\Db;
class UserController
{
public function get(Request $request)
{
$per_page = 10;
$current_page = $request->input('page', 1);
$users = Db::table('user')->paginate($per_page, '*', 'page', $current_page);
$paginator = new Paginator($users->total(), $per_page, $current_page, '/user/get?page=(:num)');
return view('user/get', ['users' => $users, 'paginator' => $paginator]);
}
}
Template (PHP thuần)
Tạo template mới app/view/user/get.html
<html>
<head>
<!-- Hỗ trợ tích hợp Bootstrap cho giao diện phân trang -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
</head>
<body>
<?= $paginator;?>
</body>
</html>
Template (Twig)
Tạo template mới app/view/user/get.html
<html>
<head>
<!-- Hỗ trợ tích hợp Bootstrap cho giao diện phân trang -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
</head>
<body>
{% autoescape false %}
{{paginator}}
{% endautoescape %}
</body>
</html>
Template (Blade)
Tạo template mới app/view/user/get.blade.php
<html>
<head>
<!-- Hỗ trợ tích hợp Bootstrap cho giao diện phân trang -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
</head>
<body>
{!! $paginator !!}
</body>
</html>
Template (ThinkPHP)
Tạo template mới app/view/user/get.html
<html>
<head>
<!-- Hỗ trợ tích hợp Bootstrap cho giao diện phân trang -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
</head>
<body>
<?=$paginator?>
</body>
</html>
Kết quả như sau:
2. Cách phân trang dựa trên ORM của Thinkphp
Không cần cài đặt thư viện bổ sung, chỉ cần cài đặt think-orm là đủ.
Sử dụng
public function index(Request $request)
{
$per_page = 10;
$users = Db::table('user')->paginate(['list_rows' => $per_page, 'page' => $request->get('page', 1), 'path' => $request->path()]);
return view('index/index', ['users' => $users]);
}
Template (ThinkPHP)
<html>
<head>
<!-- Hỗ trợ tích hợp Bootstrap cho giao diện phân trang -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
</head>
<body>
{$users|raw}
</body>
</html>