0

Zend Framework 2 で安らかな API モジュールを作成しようとしています。

適切な module.config.php を作成できません

新しいモジュールの私のフォルダー構造は次のとおりです。

[...]/module/Api
[...]/module/Api/config
[...]/module/Api/src/Api/Controller

私のコントローラーの名前は、 [...]/module/Api/src/Api/Controller/ShortenerController.php にある ShortenerController.php です。

その中で、名前空間を次のように設定しています。

namespace Api\Controller;

[...]/module/Api/config には、次のコードを含む module.config.php ファイルがあります。

<?php
return array(
    'controllers' => array(
        'invokables' => array(
            'Api\Controller\Shortener' => 'Api\Controller\ShortenerController',
        ),
    ),

    // The following section is new and should be added to your file
    'router' => array(
        'routes' => array(
            'Api' => array(
                'type'    => 'segment',
                'options' => array(
                    'route'    => '/api/s/[:url]',
                    'defaults' => array(
                        'controller' => 'API\Controller\Shortener',
                    ),
                ),
            ),
        ),
    ),


  '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',
//             'index/index'   => __DIR__ . '/../view/index/index.phtml',
//             'error/404'     => __DIR__ . '/../view/error/404.phtml',
//             'error/index'   => __DIR__ . '/../view/error/index.phtml',
//         ),
//         'template_path_stack' => array(
//             'application' => __DIR__ . '/../view',
//         ),
        'strategies' => array(
            'ViewJsonStrategy',
        ),
    ),
);

このリンクにデータを投稿してcurlを呼び出そうとすると:

http://server_address/api/s/

次のようなエラーが表示されます。

PHP Fatal error:  Class 'Api\\Controller\\ShortenerController' not found in /home/ertai/zf/library/Zend/ServiceManager/AbstractPluginManager.php on line 170

私がここで間違っていることは何ですか?適切なルートを作成するために、module.config.php ファイルに何を記述すればよいかを把握できません。

4

1 に答える 1

0

次のようにモジュールを宣言するのを忘れたapplication.config.phpようです:

return array(
    'modules' => array(
        'Application',
        'Api',
    ),

ところで、デフォルトのルート設定には気をつけてください

                'defaults' => array(
                    'controller' => 'API\Controller\Shortener',
                ),

これは大文字と小文字が区別されるため、次のようにする必要があります。

                'defaults' => array(
                    'controller' => 'Api\Controller\Shortener',
                ),

また、次のようにデフォルトのアクションも設定することをお勧めします。

                'defaults' => array(
                    'controller' => 'Api\Controller\Shortener',
                    'action' => 'index',
                ),
于 2013-06-06T15:11:05.147 に答える