以下の preDispatch を理解するのに問題があります 私のコードです
public function preDispatch(\Zend\Mvc\MvcEvent $e)
{
$application = $e->getApplication();
$serviceManager = $application->getServiceManager();
$controller = $e->getTarget();
$route = $controller->getEvent()->getRouteMatch();
$hit_controller = $route->getParam('__CONTROLLER__');
if(strcmp($hit_controller,"Dashboard")==0){
$authService = $serviceManager->get('Admin\Authentication\Service');
if (!$authService->hasIdentity()) {
$pluginManager = $serviceManager->get('Zend\Mvc\Controller\PluginManager');
$redirectPlugin = $pluginManager->get('redirect');
return $redirectPlugin->toRoute('Admin',array('controller'=>'Admin','action'=>'index'));
}
}
return;
}
以下は、module.config.php で定義された私のルートです。
return array(
'router' => array(
'routes' => array(
'Dashboard' => array(
'type' => 'Segment',
'options' => array(
'route' => '/Dashboard[/:action][/:id]',
'defaults' => array(
'__NAMESPACE__' => 'Admin\Controller',
'controller' => 'Dashboard',
'action' => 'index',
),
),
),
'Admin' => array(
'type' => 'Segment',
'options' => array(
'route' => '/Admin[/:action][/:id]',
'defaults' => array(
'__NAMESPACE__' => 'Admin\Controller',
'controller' => 'Admin',
'action' => 'index',
),
),
),
),
),
'controllers' => array(
'invokables' => array(
'Admin\Controller\Admin' => 'Admin\Controller\AdminController',
'Admin\Controller\Dashboard' => 'Admin\Controller\DashboardController'
),
),
'view_manager' => array( ),
'template_path_stack' => array(
__DIR__ . '/../view',
),
),
);
URLを入力すると
public/Admin works fine
public/Dashboard works fine
public/Dashboard/edit works fine
public/Dashboard/edit/11 fails
edit/11 の内容を表示します。preDispatch が Dashboard/edit/11 で実行されない理由がわかりません。
誰かが光を投げて正しい方向に導いてくれませんか。提案/コメント/ヘルプは高く評価されています。ありがとう