自動一致ビューファイルを作成したい-コントローラーアクション。
/Web/TestController/testAction
(モジュール/コントローラー/アクション)が要求された場合、
ZF2はこのビューを読み込もうとします:/web/test/test
次に、この行をに追加して、機能template_map
させる必要があります。
'web/test/test' => __DIR__ . '/../view/pages/test/test.phtml',
ただし、すべてのアクションにこの行を追加したくありません。
このように動作しますか:
'web/{ABC}/{XYZ}' => __DIR__ . '/../view/pages/{ABC}/{XYZ}.phtml',
自動的に一致するようにするにはどうすればよいですか?
module.config.php:
return array(
'router' => array(
'routes' => array(
'web' => array(
'type' => 'segment',
'options' => array(
'route' => '[/:action]',
'constraints' => array(),
'defaults' => array(
'controller' => 'Web\Controller\Test',
),
)
)
)
),
'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/test' => __DIR__ . '/../view/layouts/test/test.phtml',
'layout/default' => __DIR__ . '/../view/layouts/default/default.phtml',
'error/404' => __DIR__ . '/../view/error/404.phtml',
'error/index' => __DIR__ . '/../view/error/index.phtml',
'web/test/test' => __DIR__ . '/../view/pages/test/test.phtml',
),
'template_path_stack' => array(
__DIR__ . '/../view',
),
'layout' => 'layout/default'
),
);