gpt4 book ai didi

php - Zend2 Routing __NAMESPACE__ 不起作用或被忽略

转载 作者:搜寻专家 更新时间:2023-10-31 21:02:38 25 4
gpt4 key购买 nike

我在 Zend2 中使用这个配置作为我的应用程序模块配置,这真的很正常,每个建议都作为标准路由规则:

'controllers'  => array(
'invokables' => array(
'Application\Controller\Index' => 'Application\Controller\IndexController',
),
),
'router' => array(
'routes' => array(
'home' => array(
'type' => 'Zend\Mvc\Router\Http\Literal',
'options' => array(
'route' => '/',
'defaults' => array(
'controller' => 'Application\Controller\Index',
'action' => 'index',
),
),
),
'application' => array(
'type' => 'Zend\Mvc\Router\Http\Literal',
'options' => array(
'route' => '/application',
'defaults' => array(
'__NAMESPACE__' => 'Application\Controller',
'controller' => 'Index',
'action' => 'index',
),
),
'may_terminate' => true,
'child_routes' => array(
'default' => array(
'type' => 'Zend\Mvc\Router\Http\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(
),
),
),
),
),
),
),

home 的路由工作正常。但是对于 http://localhost/application 我得到:

Index(resolves to invalid controller class or alias: Index)

对于 http://localhost/application/index/index 我得到:

index(resolves to invalid controller class or alias: index)

如果我改变这个:

'application' => array(
'type' => 'Zend\Mvc\Router\Http\Literal',
'options' => array(
'route' => '/application',
'defaults' => array(
'__NAMESPACE__' => 'Application\Controller',
'controller' => 'Index',
'action' => 'index',
),
),

为此:

'application' => array(
'type' => 'Zend\Mvc\Router\Http\Literal',
'options' => array(
'route' => '/application',
'defaults' => array(
'controller' => 'Application\Controller\Index',
'action' => 'index',
),
),

你肯定知道 http://localhost/application 它会像 home url 一样正常工作

如果我使用这个:

    'controllers'  => array(
'invokables' => array(
'index' => 'Application\Controller\IndexController',
),
),

如您所知,配置将合并,我应该在项目中只有一个索引 Controller 。

为什么行 '__NAMESPACE__' => 'Application\Controller', 被忽略,它只查找 Controller 数组中不存在的索引或索引?

编辑:

与其他项目相比,我将其添加到 Application/Module.php 中:

public function onBootstrap(MvcEvent $e)
{
$eventManager = $e->getApplication()->getEventManager();
$moduleRouteListener = new ModuleRouteListener();
$moduleRouteListener->attach($eventManager);
}

现在可以使用了,但我需要解释。这是解决方案吗?我的意思是我应该将它添加到项目中的 Module.php 文件之一以使路由规则正常工作吗?为什么没有它 __NAMESPACE__ 将在路由规则中被忽略?

最佳答案

您已经找到了解决方案,添加 ModuleRouteListener 是正确的做法。解释可以在the description of the onRoute method inside this listener中找到:

Listen to the "route" event and determine if the module namespace should be prepended to the controller name.

If the route match contains a parameter key matching the MODULE_NAMESPACE constant, that value will be prepended, with a namespace separator, to the matched controller parameter.

关于php - Zend2 Routing __NAMESPACE__ 不起作用或被忽略,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38942383/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com