请求的控制器 t 没有定义

详细错误原因:

您请求访问控制器 t 的动作 Shirt
但控制器 t 对应的类 Controller_T 没有定义。

调用参数 :
Array
(
    [controller] => T
    [action] => Shirt
)

解决:

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

Controller/T.php

[Copy To Clipboard]


<?php

// Controller/T.php

class Controller_T extends FLEA_Controller_Action
{

    function actionShirt()
    {

    }
}


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


Filename: /usr/home/hmu088100/htdocs/lib/FLEA/FLEA/Dispatcher/Simple.php [77]
#3 FLEA_Dispatcher_Simple::_executeAction('t', 'Shirt', 'Controller_T')

Filename: /usr/home/hmu088100/htdocs/lib/FLEA/FLEA.php [816]
#2 FLEA_Dispatcher_Simple::dispatching()

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