douquan1953 2016-06-08 12:41
浏览 26
已采纳

Zend框架模块设置

I'm trying to setup a module in the Zend Framework. Right now all I want is for it to go to my summary.phtml page, which will display Hello World.
I have setup the directory structure under my module directory as follows:

Directory Structure

My files are as follows:

module.config.php

<?php
return array(
        'controllers' => array(
                'invokables' => array(
                        'BlindQC\Controller\BlindQC' => 'BlindQC\Controller\BlindQCController',
                ),
        ),
        // The following section is new and should be added to your file
        'router' => array(
                'routes' => array(
                        'blinqc' => array(
                                'type' => 'Literal',
                                'options' => array(
                                        'route' => '/summary',
                                        'defaults' => array(
                                                '__NAMESPACE__' => 'BlindQC\Controller',
                                                'controller' => 'BlindQC',
                                                'action' => 'summary',
                                        ),
                                ),
                        ),
                ),
        ),
        'view_manager' => array(
                'template_path_stack' => array(
                        'blindqc' => __DIR__ . '/../view',
                ),
        ),
);

BlindQCController.php

<?php
namespace BlindQC\Controller;
use Zend\Mvc\Controller\AbstractActionController;
use Zend\View\Model\ViewModel;

class BlindQCController extends AbstractActionController{
    public function summaryAction(){

    }
}; 

summary.phtml

<h1>Hello World</h1>

autoload_classmap.php

<?php
return array();

Module.php

<?php
namespace BlindQC;

class Module {
    public function getAutoloaderConfig() {
        return array(
                'Zend\Loader\ClassMapAutoloader' => array(__DIR__ . '/autoload_classmap.php',),
                'Zend\Loader\StandardAutoloader' => array(
                        'namespaces' => array(__NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,),
                ),
        );
    }

    public function getConfig() {
        return include __DIR__ . '/config/module.config.php';
    }
}

I also modified my project's application.config.php to include my module:

// This should be an array of module namespaces used in the application.
'modules' => array(
        'Application',
        'UIExperiment',
        'Developer',
        'User',
        'Project',
        'Report',
        'ProjectFamily', 
        'FMEProcessManager', 
        'BlindQC'
),

When I try to go to the summary route (/blindqc/summary) I get a 404. Any idea what I'm doing wrong?

展开全部

  • 写回答

1条回答 默认 最新

  • dongle2627 2016-06-08 12:48
    关注

    All I had to do was change the route in module.config.php to /blindqc/summary and rename view/blindqc/blindqc to view/blind-qc/blind-qc in my directory structure.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部