0

这是问题所在。我正在使用 Code Igniter 的分页库对模型返回的结果进行分页。问题是我还需要将一些参数传递给我的控制器方法,所以 url 是这样的:

localhost/index.php/controller/paginationNum

我需要成为这样的人

localhost/index.php/controller/paginationNum/arg1/arg2/arg3

如何忽略 Url 中的 paginationNumber 以便可以使用控制器中的参数?

4

2 回答 2

0

我不完全确定,因为我在 Codeigniter 中使用了很多与 Ajax 结合的分页,但你不能只使用:

 $this->uri->segment(n); 

所以你过滤掉了 URI 中不需要的部分?

于 2013-08-12T19:03:01.663 回答
0

URI 类可以帮助你解决你的问题

像这样使用uri段。

$this->uri->segment(n)

从uri 类中找到更多帮助

享受编码:)

于 2013-08-16T01:08:23.610 回答