Kohana 3 - 自定义路线
我正在尝试创建一个自定义路线,例如:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要一条与之匹配的路线吗?这里是......
当然,我不知道什么应该是可选的,或者什么应该存储为溢出,所以你可能需要修改它。
我还建议使用更具描述性的占位符名称,例如
p1
。You want a route to match that? Here goes...
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.