問題描述
為此工作了太久,但沒有結(jié)果.我試過了.
Been working on this for far too long with no results. I have tried.
`IlluminatePaginationPaginator::setCurrentPage($current_page);`
返回調(diào)用受保護(hù)的方法IlluminatePaginationPaginator::setCurrentPage()
Paginator::setCurrentPage($current_page);
返回調(diào)用受保護(hù)的方法IlluminatePaginationPaginator::setCurrentPage()
DB::getPaginator()->setCurrentPage($current_page);
返回 call_user_func_array() 期望參數(shù) 1 是一個(gè)有效的回調(diào),類 'IlluminateDatabaseMySqlConnection' 沒有方法 'getPaginator'
$tmp = new Post( );$tmp->getConnection()->setCurrentPage($current_page);
返回 call_user_func_array() 期望參數(shù) 1 是一個(gè)有效的回調(diào),類 'IlluminateDatabaseMySqlConnection' 沒有方法 'getPaginator'
如何指定頁面?我需要手動(dòng)指定.
How can I specify the page? I need to specify it manually.
我曾希望它像 $model->find()->paginate($per_page, $page)
推薦答案
假設(shè)你有 $users
在你的 UserController
中進(jìn)行分頁,你可能會(huì)這樣做:
Suppose you have $users
to paginate in your UserController
, you might do:
public function index()
{
$currentPage = 3; // You can set this to any page you want to paginate to
// Make sure that you call the static method currentPageResolver()
// before querying users
Paginator::currentPageResolver(function () use ($currentPage) {
return $currentPage;
});
$users = AppUser::paginate(5);
return view('user.index', compact('users'));
}
我相信這適用于 Laravel 5.0 及更高版本.必須檢查一下.
I believe this applies to Laravel 5.0 and above. Have to check on that.
這篇關(guān)于Laravel 5.1 指定當(dāng)前頁面進(jìn)行分頁的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,也希望大家多多支持html5模板網(wǎng)!