Codeigniter 的路线问题!

发布于 2024-11-17 13:32:38 字数 134 浏览 0 评论 0原文

我正在尝试执行此路线技巧:

$route['cp/roles/:num'] = "cp/roles/index/:num";

但它不起作用:( 请帮我!!

先进的感谢。

I am trying to do this route trick:

$route['cp/roles/:num'] = "cp/roles/index/:num";

but it doesn't work :(
please help me!!

advanced thanks .

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

请止步禁区 2024-11-24 13:32:38

根据 URI 路由 的文档:

$route['product/(:num)'] = "catalog/product_lookup_by_id/$1";

第一个段为“product”,第二个段为数字的 URL 将被重新映射到“catalog”类,并且“product_lookup_by_id”方法将匹配项作为变量传递给函数。

因此,对于您的特定实例,您将执行以下操作:

$route['cp/roles/(:num)'] = "cp/roles/index/$1";

According to the documentation on URI Routing:

$route['product/(:num)'] = "catalog/product_lookup_by_id/$1";

A URL with "product" as the first segment, and a number in the second will be remapped to the "catalog" class and the "product_lookup_by_id" method passing in the match as a variable to the function.

So, for your particular instance, you would do the following:

$route['cp/roles/(:num)'] = "cp/roles/index/$1";
风蛊 2024-11-24 13:32:38

您可以尝试

$route['cp/roles/:num'] = "cp/roles";

然后不要在您使用的函数中传递变量

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

或与段相对应的数字。

You could try

$route['cp/roles/:num'] = "cp/roles";

and then instead of passing a variable in your function you use

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

or the number that correspond to the segment.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文