【发布时间】:2012-03-14 18:31:58
【问题描述】:
最近几天我在玩 CI 的分页。我已经设置了配置,并且效果很好。在控制器的功能中,我创建了一些检查 url 的 IF 语句。
IF url is localhost/CI/index.php/controller/function/news
THEN return first page of results from database -> first page
BUT IF url is localhost/CI/index.php/controller/function/news/10
THEN return second page of results from database -> second page
但存在问题,因为 CI 的分页仅在控制器的函数之后有多个结果时才适用于导航 -> localhost/CI/index.php/controller/function/10 。
是否有任何解决方法可以使用 localhost/CI/index.php/controller/function/news/10 这样的 url 进行导航? (我有新闻、分类和其他功能,我想展示一些关于它的基本信息。)
【问题讨论】:
标签: php codeigniter pagination