Home > Backend Development > PHP Tutorial > laravel5 一个页面中有两个列表,如何分开分页

laravel5 一个页面中有两个列表,如何分开分页

WBOY
Release: 2016-06-06 20:30:02
Original
1230 people have browsed it

在一个页面有两个列表,在render中可以添加参数,但是分页是自动完成的,如何按参数进行对应的分页呢,求解,谢谢

回复内容:

在一个页面有两个列表,在render中可以添加参数,但是分页是自动完成的,如何按参数进行对应的分页呢,求解,谢谢

找到答案了,在laravel分页类中有一个方法setPageName(),可以自定义分页号的request名,比如默认是page=1,这种可以通过该方法将同一页面下的两个列表的分页分开,例如userList用upage=1,groupList用gpage=1,这样同页面多列表就不会互相干扰,but~~~~~~~~~然并卵,这个方法在L5.0里面有bug,‘page’这个值被hardcoded,所以你自定义什么都不会生效。
bug在这
GitHub Problem with custom pageName for Pagination #8000

可惜这个bug的修复并没有合并到L5.0而是合并到了L5.1,解决代码在这
GitHub 5.0 Use custom page name for Paginator #8475

然后我按照以上修复了我的代码,然而依旧然并卵,因为环境问题(PHP 5.4.39),没法升级L5.1,所以按楼上所说,乖乖的用Ajax分页去了,真是哔了狗了,若果有大家知道问题原因能告诉我十分感谢,想知道为什么不好用,谢谢了;

两个列表建议使用 ajax 分页

大神 能不能借鉴一下你ajax分页的代码呀 膜拜ing

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template