Zend Controller 将所有操作合并为一个操作
我有类别控制器,
当我输入地址 .com/categorie/education
时,我需要 使用索引操作 它使用带有参数 education .com/categorie/index/education
的索引操作
或将所有操作重定向到索引?
I have categorie Controller, with index action
I need that when I enter address .com/categorie/education
it uses index action with parameter education .com/categorie/index/education
or redirect all actions to index ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你们的路线设置得怎么样?鉴于缺乏提供的信息,我必须假设您正在使用 .ini 文件,这就是它的工作原理:
注意,我确实对它进行了一些更改,作为索引操作,我认为,应该列出所有类别。这样你就有了一个 viewAction 来列出各个类别。
要按照您的要求获得它,我相信它会是这样的:
How are your routes setup? Given the lack of information provided I have to assume that you are using an .ini file, this is how it would work:
Note, I did change it up a bit, as the index action, imo, should list all categories. This way you have a viewAction to list the individual categorie.
To have it as you requested I believe it would be something like: