Zend Framework 路由与附加页面参数

发布于 2025-01-03 09:58:56 字数 592 浏览 0 评论 0原文

我有一个带有路由的博客。在我的 ini 中,它看起来像这样:

routes.quote.route = :id
routes.quote.defaults.module = default
routes.quote.defaults.controller = posts
routes.quote.defaults.action = single
routes.quote.reqs.id = \d+

现在我想另外有一个页面参数(用于注释)。我只是通过创建这样的第二条路线来获得它:

routes.quotePage.route = :id/page/:page
routes.quotePage.defaults.module = default
routes.quotePage.defaults.controller = posts
routes.quotePage.defaults.action = single
routes.quotePage.reqs.id = \d+
routes.quotePage.reqs.page = \d+

我想将这两者合并为一个。我该怎么做?页面参数应该只是附加的。

谢谢

i have a blog with a routing. In my ini it seems like this:

routes.quote.route = :id
routes.quote.defaults.module = default
routes.quote.defaults.controller = posts
routes.quote.defaults.action = single
routes.quote.reqs.id = \d+

Now i want to have a page parameter (for comments) additionally. I only got it by creating a sectond route like this:

routes.quotePage.route = :id/page/:page
routes.quotePage.defaults.module = default
routes.quotePage.defaults.controller = posts
routes.quotePage.defaults.action = single
routes.quotePage.reqs.id = \d+
routes.quotePage.reqs.page = \d+

I want to combine these two into one. How can i do this? the page-parameter should only be additional.

Thank You

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

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

发布评论

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

评论(2

奶气 2025-01-10 09:58:56

使用 Zend_Controller_Router_Route_Regex 类似这 :

routes.quote.route.type = "Zend_Controller_Router_Route_Regex"
routes.quote.route = posts/(\d+)/(\d+)
routes.quote.defaults.module = default
routes.quote.defaults.controller = posts
routes.quote.defaults.action = single
routes.quote.map.1 = "id"
routes.quote.map.1 = "page"

use Zend_Controller_Router_Route_Regex like this :

routes.quote.route.type = "Zend_Controller_Router_Route_Regex"
routes.quote.route = posts/(\d+)/(\d+)
routes.quote.defaults.module = default
routes.quote.defaults.controller = posts
routes.quote.defaults.action = single
routes.quote.map.1 = "id"
routes.quote.map.1 = "page"
夜深人未静 2025-01-10 09:58:56

您可以为页面参数分配默认值

routes.quotePage.route = :id/:page
routes.quotePage.defaults.module = default
routes.quotePage.defaults.controller = posts
routes.quotePage.defaults.action = single
routes.quotePage.defaults.page = 1
routes.quotePage.reqs.id = \d+
routes.quotePage.reqs.page = \d+

这将匹配 http://domain.com/1http://domain.com/1/page/1http://domain.com/1/page/2

You can assign a defaul value to page parameter

routes.quotePage.route = :id/:page
routes.quotePage.defaults.module = default
routes.quotePage.defaults.controller = posts
routes.quotePage.defaults.action = single
routes.quotePage.defaults.page = 1
routes.quotePage.reqs.id = \d+
routes.quotePage.reqs.page = \d+

This will match both http://domain.com/1 and http://domain.com/1/page/1 or http://domain.com/1/page/2

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