请求的控制器 student 没有定义

详细错误原因:

您请求访问控制器 student 的动作 index
但控制器 student 对应的类 Controller_student 没有定义。

调用参数 :
Array
(
    [controller] => student
)

解决:

请检查是否创建了 Controller_student 类的定义文件:

Controller/student.php

[Copy To Clipboard]


<?php

// Controller/student.php

class Controller_student extends FLEA_Controller_Action
{

    function actionindex()
    {

    }
}


Exception: FLEA_Exception_MissingController
Message: 缺少控制器 "student".


Filename: /usr/home/byu2893280001/htdocs/libs/Flea/FLEA/Dispatcher/Simple.php [77]
#3 FLEA_Dispatcher_Simple::_executeAction('student', 'index', 'Controller_student')

Filename: /usr/home/byu2893280001/htdocs/libs/Flea/FLEA.php [817]
#2 FLEA_Dispatcher_Simple::dispatching()

Filename: /usr/home/byu2893280001/htdocs/index.php [77]
#1 FLEA::runMVC()