Kohana 3 - 自定义路线

发布于 2024-09-04 04:37:49 字数 160 浏览 7 评论 0原文

我正在尝试创建一个自定义路线,例如:
search/result/city/p1/state/p2/zip/p3/min/p4/max/p5/bed/p6/bath/p7/cats/p8/ dogs/p9/parking/p10
其中 search 是控制器,结果操作 p1-p10 是变量。

I'm trying to create a custom route like:
search/result/city/p1/state/p2/zip/p3/min/p4/max/p5/bed/p6/bath/p7/cats/p8/dogs/p9/parking/p10
Where search is the controller and result the action p1-p10 are variables.

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

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

发布评论

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

评论(1

深海不蓝 2024-09-11 04:37:49

您想要一条与之匹配的路线吗?这里是......

Route::set('crazy_route', 'search/result/city/<p1>/state/<p2>/zip/<p3>/min/<p4>/max/<p5>/bed/<p6>/bath/<p7>/ (and so forth)', array())
 -> defaults(
       // set your defaults
       array(
        'controller' => 'seach',
        'action'    => 'result' 
      )
    )

当然,我不知道什么应该是可选的,或者什么应该存储为溢出,所以你可能需要修改它。

我还建议使用更具描述性的占位符名称,例如 p1

You want a route to match that? Here goes...

Route::set('crazy_route', 'search/result/city/<p1>/state/<p2>/zip/<p3>/min/<p4>/max/<p5>/bed/<p6>/bath/<p7>/ (and so forth)', array())
 -> defaults(
       // set your defaults
       array(
        'controller' => 'seach',
        'action'    => 'result' 
      )
    )

Of course, I don't know what should be optional, or what should be stored as overflow, so you may need to modify it.

I would also recommend using more descriptive placeholder names then p1 for example.

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