我安装了SkeletonApplication并在标准模块“应用程序”中实现了一些控制器。
工作正常。
但现在我想使用第二个模块,我想在“应用程序”模块中设置一个路径到新模块,以便在视图中将其链接到那里。
第二个模块名为' Sporttabs'
在我的application.config.php中,我设置了文档中的内容:
// This should be an array of module namespaces used in the application.
'modules' => array(
'Application',
'Sporttabs'
),
在模块'应用程序'我在module.config.php中设置:
'routes' => array(
'home' => array(
'type' => 'Zend\Mvc\Router\Http\Literal',
'options' => array(
'route' => '/',
'defaults' => array(
'module' => 'Application',
'controller' => 'Index',
'action' => 'index',
),
),
),
'fach' => array(
'type' => 'segment',
'options' => array(
'route' => '/index[/:action][/:id]',
'constraints' => array(
'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
'id' => '[0-9]+',
),
'defaults' => array(
'controller' => 'Index',
'action' => 'index'
),
),
),
'sporttabs' => array(
'type' => 'segment',
'options' => array(
'route' => '/sporttabs[/:controller][/:action][/:id]',
'constraints' => array(
'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
'id' => '[0-9]+',
),
'defaults' => array(
'module' => 'Sporttabs',
'controller' => 'Sporttab',
'action' => 'index'
),
),
),
),
),
我尝试在index.phtml中链接它:
<a href="<?php echo $this->url('sporttabs',array('module' => 'sporttabs','controller' => 'sporttab','action' => 'index'))?>">Sporttabs-Projekt</a>
这不起作用,我只得到/ sporttab
即使我尝试做www.myurl.de/sporttabs,我也没有进入Sporttabs模块...... (我使用ZendStudio生成新模块,所以我认为所有文件都在正确的位置......)
你能给我一个如何做到这一点的提示吗?
答案 0 :(得分:0)
无需在Application配置中定义sporttabs。我建议你在Sporttabs的module.config.php文件中这样做。
这是我的/admin
路由的一个示例,它是一个名为Admin
的不同模块,位于应用程序旁边。
'router' => [
'routes' => [
'admin' => [
'type' => 'Literal',
'options' => [
'route' => '/admin',
'defaults' => [
'__NAMESPACE__' => 'Admin\Controller',
'controller' => 'Index',
'action' => 'index',
],
],
'may_terminate' => true,
'child_routes' => [
'default' => [
'type' => 'Segment',
'options' => [
'route' => '/[:controller[/][:action[/][:id][/page/:page][/search/:search]]]',
'constraints' => [
'controller' => '[a-zA-Z0-9_-]*',
'action' => '[a-zA-Z0-9_-]*',
'search' => '[a-zA-Z0-9_-]*',
'id' => '[0-9]+',
'page' => '[0-9]+',
],
'defaults' => [
'__NAMESPACE__' => 'Admin\Controller',
'controller' => 'Index',
'action' => 'index',
],
],
],
],
],
],
],
从那里我这样做:
<?=$this->url("admin/default", ['controller' => "controler_name", "action" => "action_name_from_controller", "id" => id_or_something_else_if_needed])?>
/default
是为了能够访问子路径。
答案 1 :(得分:0)
@Stanimir为我的解决方案提供了正确的提示:
在编辑应用程序的路由时,我必须按路径数组的顺序进行无意的更改: 'may_terminate'和'child_routes'部分移到了上一级,而不是'fach'路线的一部分。
所以我按如下方式更改了数组:
'routes'=> array(
'fach'=> array(
'type' => 'Literal',
'options' => array(
'route' => '/',
'defaults' => array(
'__NAMESPACE__' => 'Application\Controller',
'controller' => 'Index',
'action' => 'index',
),
),
'may_terminate' => 'true',
'child_routes' => array(
'default' => array(
'type' => 'Segment',
'options' => array(
'route' => '/[:controller[/][:action[/][:id]]]',
'constraints' => array(
'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
'id' => '[0-9]+',
),
'defaults' => array(
'__NAMESPACE__' => 'Application\Controller',
'controller' => 'Index',
'action' => 'index',
),
),
),
),
),),
作为在路由中包含命名空间的后果,我还必须更改控制器数组,因为控制器的别名从'Index'更改为'Application \ Controller \ Index':
'controllers' => array(
'invokables' => array(
'Application\Controller\Index' => 'Application\Controller\IndexController',
),
),
同样的错误阻止我进入第二个模块,路由数组也被误导了。
现在链接解决方案Stanimir在他的回答中发布的内容很好,我进入了我的新模块...
感谢您的帮助Stanimir!