请求的控制器 WebSerialize 没有定义

详细错误原因:

您请求访问控制器 WebSerialize 的动作 SLList
但控制器 WebSerialize 对应的类 Controller_WebSerialize 没有定义。

调用参数 :
Array
(
    [controller] => WebSerialize
    [action] => SLList
    [id] => 173
)

解决:

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

Controller/WebSerialize.php

[Copy To Clipboard]


<?php

// Controller/WebSerialize.php

class Controller_WebSerialize extends FLEA_Controller_Action
{

    function actionSLList()
    {

    }
}


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


Filename: /www/web/test/test01/public_html/FLEA/FLEA/Dispatcher/Simple.php [77]
#3 FLEA_Dispatcher_Simple::_executeAction('WebSerialize', 'SLList', 'Controller_WebSerialize')

Filename: /www/web/test/test01/public_html/FLEA/FLEA.php [816]
#2 FLEA_Dispatcher_Simple::dispatching()

Filename: /www/web/test/test01/public_html/index.php [11]
#1 FLEA::runMVC()