我正在使用Laravel 5.7,并且在分页过程中有点卡住。当我使用默认方法paginate()
并为视图文件调用links()
时,我注意到Laravel默认将上一页URL设置为null
,currentPage()
方法始终返回1 (显然,并非始终如此),因此无论任何情况/情况,“下一页URL”始终都会返回第二个链接的值。为什么这样做呢?如果必须自定义,使用这些方法有什么意义?但是我的问题是,如何LengthAwarePagintor
类自定义一种方式,
1. I can get the CurrentPage value set to the value of the `ClickEvent` of the concerned pagination link
2.set the `previousPageUrl()` method the actual functionality which is, to get the URL of the previous link, and if no link available, redirect to the 1st link?