Zend Controller 将所有操作合并为一个操作

发布于 2024-10-01 00:36:51 字数 171 浏览 2 评论 0原文

我有类别控制器,

当我输入地址 .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 技术交流群。

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

发布评论

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

评论(1

み格子的夏天 2024-10-08 00:36:51

你们的路线设置得怎么样?鉴于缺乏提供的信息,我必须假设您正在使用 .ini 文件,这就是它的工作原理:

; CATEGORIE
categorie.type = "Zend_Controller_Router_Route_Static"
categorie.route = "categorie"
categorie.defaults.controller = categorie
categorie.defaults.action = index

categorie_view.route = "categorie/:slug"
categorie_view.defaults.controller = category
categorie_view.defaults.action = view

注意,我确实对它进行了一些更改,作为索引操作,我认为,应该列出所有类别。这样你就有了一个 viewAction 来列出各个类别。

要按照您的要求获得它,我相信它会是这样的:

; CATEGORIE
categorie.route = "categorie/:slug"
categorie.defaults.controller = categorie
categorie.defaults.action = index

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:

; CATEGORIE
categorie.type = "Zend_Controller_Router_Route_Static"
categorie.route = "categorie"
categorie.defaults.controller = categorie
categorie.defaults.action = index

categorie_view.route = "categorie/:slug"
categorie_view.defaults.controller = category
categorie_view.defaults.action = view

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:

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