1

有人知道如何更改 Zend Framework 2 中的默认模块吗?我使用骨架应用程序作为主页,但我想创建另一个具有默认主页的模块。我尝试了两件事

我从 application.config.php 文件中删除了“骨架应用程序”,这就是它的样子

return array(
'modules' => array(
    'Application',
    'Helloworld'
),
'module_listener_options' => array(
    'config_glob_paths'    => array(
        'config/autoload/{,*.}{global,local}.php',
    ),
    'module_paths' => array(
        './module',
        './vendor',
    ),
  ),
);

这就是现在的样子

    return array(
'modules' => array(
    'Helloworld'
),
'module_listener_options' => array(
    'config_glob_paths'    => array(
        'config/autoload/{,*.}{global,local}.php',
    ),
    'module_paths' => array(
        './module',
        './vendor',
     ),
   ),
);

如果您不能告诉我从模块中删除了“应用程序”,那么我更改了 Helloworld 模块的 module.config.php 文件,这就是它过去的样子

return array(
'view_manager' => array(
    'template_path_stack' => array(
        __DIR__ . '/../view',
    ),
),
'router' => array(
    'routes' => array(
        'sayhello' => array(
            'type' => 'Zend\Mvc\Router\Http\Literal',
            'options' => array(
                'route' => '/sayhello',
                'defaults' => array(
                    'controller' => 'Helloworld\Controller\Index',
                    'action' => 'index',
                )
            )
        )
    )
),
'controllers' => array(
    'factories' => array(
        'Helloworld\Controller\Index' => 'Helloworld\Controller\IndexControllerFactory'
    )
),
'service_manager' => array(
    'invokables' => array(
        'greetingService' => 'Helloworld\Service\GreetingService'
     )
   )
);

这就是现在的样子

return array(
'view_manager' => array(
    'template_path_stack' => array(
        __DIR__ . '/../view',
    ),
),
'router' => array(
    'routes' => array(
        'sayhello' => array(
            'type' => 'Zend\Mvc\Router\Http\Literal',
            'options' => array(
                'route' => '/',
                'defaults' => array(
                    'controller' => 'Helloworld\Controller\Index',
                    'action' => 'index',
                )
            )
        )
    )
),
'controllers' => array(
    'factories' => array(
        'Helloworld\Controller\Index' => 'Helloworld\Controller\IndexControllerFactory'
    )
),
'service_manager' => array(
    'invokables' => array(
        'greetingService' => 'Helloworld\Service\GreetingService'
      )
   )
);

对选项中的“路由器”数组进行了更改=>路由我将值更改为“/”

但它会引发 5000 错误,谁能详细说明我做错了什么?

4

2 回答 2

0

好的,所以我看到了我的应用程序的问题。路由实际上是正确的问题是我缺少一个 layout.phtml 文件,我需要在模块配置中指定所有这些。我需要将以下内容添加到我的 module.config.php

    '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/layout'           => __DIR__ . '/../view/layout/layout.phtml',
        'valaree/index/index' => __DIR__ . '/../view/valaree/index/index.phtml',
        'error/404'               => __DIR__ . '/../view/error/404.phtml',
        'error/index'             => __DIR__ . '/../view/error/index.phtml',
    ),
    'template_path_stack' => array(
        __DIR__ . '/../view',
    ),
)
于 2012-12-19T20:08:11.360 回答
0

您可以通过在主路由中的应用程序模块 (myproject/module/application/config/module.config.php) 的 module.config.php 中设置 url 来设置项目主页。例如,如果您想使用默认模块的索引控制器的索引操作作为您的主页,您需要更改上述文件中的主页路由。IE

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

在使用上述代码之前,请确保在 (myproject/config/application.config.php) 中定义了新模块。如果您需要任何进一步的帮助,请告诉我。谢谢..:)

于 2014-06-13T05:28:29.113 回答