改进分页类

This commit is contained in:
thinkphp
2017-02-15 08:49:22 +08:00
parent c917ad1ce9
commit 855124a514

View File

@@ -341,7 +341,7 @@ abstract class Paginator implements ArrayAccess, Countable, IteratorAggregate, J
{
try {
$total = $this->total();
} catch (Exception $e) {
} catch (\DomainException $e) {
$total = null;
}
@@ -349,7 +349,7 @@ abstract class Paginator implements ArrayAccess, Countable, IteratorAggregate, J
'total' => $total,
'per_page' => $this->listRows(),
'current_page' => $this->currentPage(),
'data' => $this->items->toArray()
'data' => $this->items->toArray(),
];
}