Zend 路由器配置 xml,快捷方式?

发布于 2024-11-04 02:14:38 字数 562 浏览 5 评论 0原文

我有一个像这样的 xml

<configdata>
    <routes>
        <home type="Zend_Controller_Router_Route">
            <route>home</route>
            <defaults>
                <controller>index</controller>
                <action>index</action>
            </defaults>
        </home>
    </routes>
</configdata>

现在这可以工作,但我想给每个路由一个快捷方式,就像您在引导程序中添加这样的一样。

$router->addRoute('shortcut_key',$route);

我如何在配置 xml 中执行此操作?

I have an xml like this

<configdata>
    <routes>
        <home type="Zend_Controller_Router_Route">
            <route>home</route>
            <defaults>
                <controller>index</controller>
                <action>index</action>
            </defaults>
        </home>
    </routes>
</configdata>

Now this works but I'd like to give each rout a shortcut like you would add in bootstrap like this..

$router->addRoute('shortcut_key',$route);

How can I do this in the config xml?

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

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

发布评论

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

评论(1

凶凌 2024-11-11 02:14:38

在 bootsrap.php 上...

protected function _initRoutes()
 {
  $routefile = new Zend_Config_Xml(APPLICATION_PATH.'/routes.xml');
  $router = Zend_Controller_Front::getInstance()->getRouter();
  $router->addConfig($routefile);
  return $router;
 }

其中,routes.xml 文件是包含所有路由的 xml 文件,并且它必须位于您的应用程序文件夹内

On your bootsrap.php...

protected function _initRoutes()
 {
  $routefile = new Zend_Config_Xml(APPLICATION_PATH.'/routes.xml');
  $router = Zend_Controller_Front::getInstance()->getRouter();
  $router->addConfig($routefile);
  return $router;
 }

where routes.xml file is the xml file containing all routes and it must be inside your application folder

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