5

我正在尝试使用 Zend 路由器创建一个子域,然后对于子域下的每个部分,例如 subdomain.site.com/section/ 我正在创建另一个路由,然后尝试将其链接到子域路由。但我不知道怎么做。我已经阅读了我能找到的所有文档和所有论坛,但它让我自己弄清楚。到目前为止,我的尝试只是给我这个错误:

可捕获的致命错误:传递给 Zend_Controller_Router_Rewrite::addRoute() 的参数 2 必须实现接口 Zend_Controller_Router_Route_Interface,给定 null,在第 155 行的 /var/local/zend/library/Zend/Controller/Router/Rewrite.php 中调用并在 /var 中定义/local/zend/library/Zend/Controller/Router/Rewrite.php 在第 93 行

使用以下代码:

routes.b2b.type = "Zend_Controller_Router_Route_Hostname"
routes.b2b.route = "sales.sitename.com"
routes.b2b.defaults.module = b2b
routes.b2b.defaults.controller = index
routes.b2b.defaults.action = index

routes.b2b_signup.type = "Zend_Controller_Router_Route_Static"
routes.b2b_signup.route = "/signup"
routes.b2b_signup.defaults.controller = "index"
routes.b2b_signup.defaults.action   = "signup"

routes.b2b_login.type = "Zend_Controller_Router_Route_Chain"
routes.b2b_login.chain = b2b_signup

我在网络上的任何地方都找不到如何将其与 INI 文件链接的示例。整个应用程序是在路由配置的 INI 中编写的,因此我无法将其切换到基于数组的配置(或 XML),互联网上 100% 的示例都在其中。

如果我能以数组形式做到这一点,我可以这样说:

$hostnameRoute = new Zend_Controller_Router_Route_Hostname(
    'sales.sitename.com',
    array(
        'controller' => 'index',
        'module'     => 'b2b',
        'action'     => 'index'
    )
);

$hostnameRoute = new Zend_Controller_Router_Route_Static(
    '/signup',
    array(
        'controller' => 'index',
        'module'     => 'b2b',
        'action'     => 'signup'
    )
);
    $chainedRoute = new Zend_Controller_Router_Route_Chain();
    $chainedRoute->chain($b2b_signup)

有人对如何在 INI 文件中执行上述操作有任何想法吗?

4

1 回答 1

11

这基本上是您想要的,采用 INI 格式:

routes.b2b.type = "Zend_Controller_Router_Route_Hostname"
routes.b2b.route = "sales.sitename.com"
; you could specify a default module (or anything) to use for the whole 
; route chain here, like so: 
; routes.b2b.defaults.module = "default"

routes.b2b.chains.signup.type = "Zend_Controller_Router_Route_Static"
routes.b2b.chains.signup.route = "/signup"
routes.b2b.chains.signup.defaults.controller = "index"
routes.b2b.chains.signup.defaults.action = "signup"

routes.b2b.chains.anotherroute.route = "/something/:foo" ; etc, etc.
routes.b2b.chains.anotherroute.defaults.action = "foo"
routes.b2b.chains.anotherroute.defaults.controller = "index"
routes.b2b.chains.anotherroute.defaults.foo = "bar"
routes.b2b.chains.anotherroute.reqs.foo = '[a-z]+'

这将为您提供以下路线:b2b-signupb2b-anotherroute

以下是有关路由链接的一些重要说明:

当将路由链接在一起时,外部路由的参数比内部路由的参数具有更高的优先级。因此,如果您在外部路由和内部路由中定义一个控制器,则会选择外部路由的控制器。

父/子链式路由名称总是用破折号连接!因此,就像上面的示例一样,b2b.chains.signup成为一个名为的路由b2b-signup(您可以将其用于 URL 组装等)。

你可以继续连载!链链可以有链。

链式路由的子级不能使用通配符。参见#ZF-6654。这是一篇博客文章,讨论了为什么这可能不是什么大问题。

于 2009-06-27T14:38:05.423 回答