我是Zend的新手。
我在zend.local
设置了本地设备
我正在创建一个新模块说 Csv ,当我像zend.local / csv这样访问网址时,它会给我以下错误
我的module.config.php
位于以下位置:
<?php
return array(
'controllers' => array(
'invokables' => array(
'Csv\Controller\Csv' => 'Csv\Controller\IndexController',
),
),
'router' => array(
'routes' => array(
'csv' => array(
'type' => 'segment',
'options' => array(
'route' => '/csv[/][:action][/:id]',
'constraints' => array(
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
'id' => '[0-9]+',
),
'defaults' => array(
'controller' => 'Csv\Controller\IndexController',
'action' => 'index',
),
),
),
),
),
'view_manager' => array(
'template_path_stack' => array(
'csv' => __DIR__ . '/../view',
),
),
);
答案 0 :(得分:1)
您提供了错误的控制器名称:
'defaults' => array(
'controller' => 'Csv\Controller\IndexController',
'action' => 'index',
),
应该是
'defaults' => array(
'controller' => 'Csv\Controller\Csv',
'action' => 'index',
),
根据你的配置
'controllers' => array(
'invokables' => array(
'Csv\Controller\Csv' => 'Csv\Controller\IndexController',
),
),
答案 1 :(得分:-1)
您需要may_terminate
选项以确保路由器可以将csv
视为终止的路由。
'csv' => array(
'type' => 'segment',
'options' => array(
'route' => '/csv[/][:action][/:id]',
'constraints' => array(
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
'id' => '[0-9]+',
),
'defaults' => array(
'controller' => 'Csv\Controller\IndexController',
'action' => 'index',
),
),
'may_terminate' => true // added
),