我如何可以追加:附加到分頁鏈接URL在Laravel
#products
要通過Laravels分頁鏈接方法使用的分頁URL的末尾,以便我能得到在地址欄?:
以下products?page=3#products
這樣一來,我的移動用戶和擁有低分辨率桌面的人就不必在每次使用分頁鏈接進行導航時都向下滾動頁面。
這是我在我的配置/視圖:
而且我越來越:每Laravel文檔
Method Illuminate\View\View::__toString() must not throw an exception
我作爲主持人:
class ProductPresenter extends Illuminate\Pagination\Presenter {
public function getActivePageWrapper($text)
{
return '<li class="current"><a href="">'.$text.'</a></li>';
}
public function getDisabledTextWrapper($text)
{
return '<li class="unavailable"><a href="">'.$text.'</a></li>';
}
public function getPageLinkWrapper($url, $page, $rel = null)
{
return '<li><a href="'.$url.'">'.$page.'</a></li>';
}
}
通過製作自己的[Custom Presenter](http://laravel.com/docs/4.2/pagination#custom-presenters)更改Laravel生成的分頁。 – Bogdan
@Bogdan我跟着,但我得到'沒有提示路徑爲[ProductPresenter]定義':( – imperium2335
請發佈您正在使用的代碼。 – Bogdan