在ZF1你不必在URL中包含的模块; 如果没有提供它,它会默认为...默认模块。 怎样才能在这个ZF2来完成? 我已经使用了框架应用程序启动和运行,但它好像我总是需要包含模块的名称,例如/application/controller/action
。
我想我可以解决此通过创建两个“占位符”的路线; 控制器和动作,然后设置默认模块“应用程序”。 然后我会把这/config/autoload/global.php
(或者/config/application.config.php
),这样的路径适用于所有我的应用程序。 但是,我得到的网址无法通过路由匹配的错误消息,即使我硬编码到类似的路径/user/index
。
我想下面的代码。
return array(
'router' => array(
'routes' => array(
'nomodule' => array(
'type' => 'Zend\Mvc\Router\Http\Literal',
'options' => array(
'route' => '/:controller/:action',
'constraints' => array(
'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
'action' => '[a-zA-Z][a-zA-Z0-9_-]*'
),
'defaults' => array(
'module' => 'Application' // Not sure of the syntax here
)
)
),
)
)
);
正如我写了一个评论,我不知道如果我的问题是默认的语法,但我不这么认为作为同样的情况,如果我硬编码的路径,并删除所有默认值。 我也试过基于框架的应用实例与它的实验,但没有运气。 我要对错误的方式? 有没有更好的方法吗? 还是我只是犯了一个错误?
提前致谢。
编辑:对于代码,使其工作,一看便知。 对于它是如何工作的解释,请阅读这篇文章 。
注:显式路由,强烈建议在通配符。
你在尝试中使用的Zend \的mvc \路由器\ HTTP \文字路由类型,您可能已经猜到它是文字,即精确匹配。 为了使它工作,你需要网段路由类型。
检查application
路径在Zend的主干应用程序的配置和它的子路径default
。 这不正是你正在尝试做的。
至于模块 - 那里是从你的代码视角“模块”没有这样的事。 模块在启动时注册资源,它不再是那个点后相关。 在ZF2您指定在其下与控制器ControllerManager的注册类或别名精确控制
// module\Application\config\module.config.php
return array(
'router' => array(
'routes' => array(
'home' => array(
'type' => 'Zend\Mvc\Router\Http\Literal',
'options' => array(
'route' => '/',
'defaults' => array(
'controller' => 'Application\Controller\Index',
'action' => 'index',
),
),
'may_terminate' => true,
'child_routes' => array(
'default' => array(
'type' => 'Segment',
'options' => array(
'route' => '[:controller[/:action]]',
'constraints' => array(
'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
'action' => '[a-zA-Z][a-zA-Z0-9_-]*'
),
'defaults' => array(
'action' => 'index',
'__NAMESPACE__' => 'Application\Controller'
)
)
)
)
)
)
),
'controllers' => array(
'invokables' => array(
'Application\Controller\Index' => 'Application\Controller\IndexController',
'Application\Controller\User' => 'Application\Controller\UserController'
),
)
);
正如我在评论下@Xerkus回答说,它并不适用于所有的网址的工作:
/application/index/index
/application/index
/application
/index/index
/index
/
我还添加testAction()
以IndexController
和TestController
用相同的动作IndexController
,这样我就可以测试我对以下途径解决方案,以及:
/index/test
/test/index
/test/test
/test
经过这么一番研究( 这里和这里主要是)我准备的解决方案为所有这些工作。 我会贴上我的整个module.config.php
阵:
return array(
'router' => array(
'routes' => array(
'home' => array(
'type' => 'Literal',
'options' => array(
'route' => '/',
'defaults' => array(
'controller' => 'Application\Controller\Index',
'action' => 'index',
),
),
),
'noModule' => array(
'type' => 'Segment',
'options' => array(
'route' => '/[:controller[/:action]]',
'constraints' => array(
'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
),
'defaults' => array(
'__NAMESPACE__' => 'Application\Controller',
'controller' => 'Index',
'action' => 'index',
),
),
),
// The following is a route to simplify getting started creating
// new controllers and actions without needing to create a new
// module. Simply drop new controllers in, and you can access them
// using the path /application/:controller/:action
'application' => array(
'type' => 'Literal',
'options' => array(
'route' => '/application',
'defaults' => array(
'__NAMESPACE__' => 'Application\Controller',
'controller' => 'Index',
'action' => 'index',
),
),
'may_terminate' => true,
'child_routes' => array(
'default' => array(
'type' => 'Segment',
'options' => array(
'route' => '/[:controller[/:action]]',
'constraints' => array(
'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
),
'defaults' => array(
),
),
),
),
),
),
),
'service_manager' => array(
'factories' => array(
'translator' => 'Zend\I18n\Translator\TranslatorServiceFactory',
),
),
'translator' => array(
'locale' => 'en_US',
'translation_file_patterns' => array(
array(
'type' => 'gettext',
'base_dir' => __DIR__ . '/../language',
'pattern' => '%s.mo',
),
),
),
'controllers' => array(
'invokables' => array(
'Application\Controller\Index' => 'Application\Controller\IndexController',
'Application\Controller\Test' => 'Application\Controller\TestController'
),
),
'view_manager' => array(
'display_not_found_reason' => true,
'display_exceptions' => true,
'doctype' => 'HTML5',
'not_found_template' => 'error/404',
'exception_template' => 'error/index',
'template_map' => array(
'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
'application/index/index' => __DIR__ . '/../view/application/index/index.phtml',
'error/404' => __DIR__ . '/../view/error/404.phtml',
'error/index' => __DIR__ . '/../view/error/index.phtml',
),
'template_path_stack' => array(
__DIR__ . '/../view',
),
),
);
在与Zend 2 Skeleteon应用程序配置的比较,我已经添加noModule
途径,新controller invokable
- test
。 当然noModule
路线包括Application/Controller
命名空间,所以在此基础上的事实,你可以设置任何你需要的默认模块。 现在,它的作品,因为它应该。
当然,记住,你noModule
路线应该第一个模块中定义从application.config.php
,以确保它总是优先。 还记得默认模块解决方案应小心操作,避免控制器和模块的名称,例如之间的冲突,如果你的名字你的下一个模块Index
,那么显然你将有一个命名冲突IndexController
中Application
模块。
我是新来的ZF一般和我刚开始学习,所以尝试这样做,它为我工作。 只是可以肯定,ü希望当你去你的域名网址,不要输入控制器名称更改默认的模块,对不对?
转到您的module.config.php
'router' => array(
'routes' => array(
'album WITH CONTROLLER IN URL' => array(
'type' => 'segment',
'options' => array(
'route' => '/album[/:action]',
'constraints' => array(
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
),
'defaults' => array(
'controller' => 'Album\Controller\Album',
'action' => 'index',
),
),
),
'album WITHOUT CONTROLLER IN URL' => array(
'type' => 'segment',
'options' => array(
'route' => '/[:action]',
'constraints' => array(
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
),
'defaults' => array(
'controller' => 'Album\Controller\Album',
'action' => 'index',
),
),
),
'SET IT AS YOUR HOMEPAGE' => array(
'type' => 'segment',
'options' => array(
'route' => '/',
'defaults' => array(
'controller' => 'Album\Controller\Album',
'action' => 'index',
),
),
),
),
),