请求的控制器 WebPage 没有定义

详细错误原因:

您请求访问控制器 WebPage 的动作 PageShow
但控制器 WebPage 对应的类 Controller_WebPage 没有定义。

调用参数 :
Array
(
    [Controller] => WebPage
    [action] => PageShow
    [id] => 82
)

解决:

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

Controller/WebPage.php

[Copy To Clipboard]


<?php

// Controller/WebPage.php

class Controller_WebPage extends FLEA_Controller_Action
{

    function actionPageShow()
    {

    }
}


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


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

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()