为什么DoctrineModule Cli会介入ZF2应用程序的命令行请求?

时间:2013-09-24 09:20:28

标签: doctrine-orm zend-framework2 command-line-interface

我正在尝试为 Cli 命名空间下的zf2应用创建一个控制台感知模块。我刚刚用一个简单的控制器,模块配置文件和Module.php创建了模块目录。

问题是当我在命令行上调用“php public / index.php”时,我在我的应用程序控制台横幅之后得到了DoctrineModule的默认Cli输出,如下所示:

➜  myapp git:(master) ✗ php public/index.php
--- This is app banner ---

----------------------------------------------
DoctrineModule
----------------------------------------------

DoctrineModule Command Line Interface version 0.8.0

Usage:
  [options] command [arguments]
... bla bla ...

模块/ CLI /配置/ module.config.php:

return array(
    'console' => array(
        'router' => array(
            'routes' => array(
                'testroute' => array(
                    'options' => array(
                        'route'    => '/',
                        'defaults' => array(
                            'controller'    => 'Cli\Controller\Index',
                            'action'        => 'index'
                        )
                    )
                )
            )
        )
    ),
);

module / Cli / Module.php的内容:

<?php
namespace Cli;

use Zend\ModuleManager\Feature\ConsoleBannerProviderInterface;
use Zend\Console\Adapter\AdapterInterface as Console;
use Zend\ModuleManager\Feature\AutoloaderProviderInterface;

class Module implements AutoloaderProviderInterface, ConsoleBannerProviderInterface
{
    public function getConsoleBanner(Console $console){
        return "--- This is app banner ---\n";
    }

    public function getAutoloaderConfig()
    {
        return array(
            'Zend\Loader\StandardAutoloader' => array(
                'namespaces' => array(
                    __NAMESPACE__ => __DIR__ . '/src'
                )
            )
       );
    }
}

1 个答案:

答案 0 :(得分:0)

这是因为学说模块的复杂性。当路由错误时会发生这种情况。例如,没有匹配的路由,找不到控制器等。

顺便说一下,

return array(
    'console' => array(
        'router' => array(
            'routes' => array(
                'testroute' => array(
                    'options' => array(
                        'route'    => '/',
                        'defaults' => array(
                            'controller'    => 'Cli\Controller\Index',
                            'action'        => 'index'
                        )
                    )
                )
            )
        )
    ),
);

部分看起来不太好。虽然web-route可以有“/”,但对于控制台路由却没有。您应该根据Console routing docs重新考虑您的配置。