0

我的应用结构是这样的:

  • 应用
    • 模块
      • 默认
      • 学生
        • 控制器
        • 形式
          • 学生家长.php
        • 楷模
        • 意见
        • Boostrap.php

我在学生模块的表单文件夹中有一个 studentParent.php。

class Student_Form_studentParent extends Zend_Dojo_Form{
}

每当我在学生模块的控制器中调用此表单类时,我都会收到类未找到错误我已将 Bootstrap.php 放在学生模块中。

class Student_Bootstrap extends Zend_Application_Module_Bootstrap
{

}

这是我的 application.ini 文件配置

resources.frontController.params.displayExceptions = 0
resource.modules=""
resources.view = ""
resources.layout.layoutPath = APPLICATION_PATH "/layouts/scripts"
resources.layout.layout = "main_template"

我的 Bootstrap.php 文件:

class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
     protected function _initDefaultModuleAutoloader()
     {
         $moduleLoader = new Zend_Application_Module_Autoloader(
    array(
        "namespace" => '',
        "basePath"  => APPLICATION_PATH.'/modules/default'
        )
      );

          Zend_Controller_Action_HelperBroker::addPrefix('App_Action_Helper');

          return $moduleLoader;
     }
}
4

2 回答 2

3
resource.modules=""

应该:

resources.modules=""

(即资源复数)。

我还建议您使用大写字母来开始您的类名,Student_Form_StudentParent而不是Student_Form_studentParent(文件名也需要StudentParent.php)。我想是个人偏好,但是如果框架以一种方式执行,而您的应用程序以另一种方式执行,那么您的类命名将不一致。

于 2012-06-16T11:22:41.333 回答
0

还有

$moduleLoader = new Zend_Application_Module_Autoloader(
array(
    "namespace" => '',
    "basePath"  => APPLICATION_PATH.'/modules/default'
    )
  );

basePath应该指向包含模块的目录,而不是像您的示例中那样指向特定的模块目录。

于 2012-06-16T11:26:13.653 回答