请求的控制器 WebTx 没有定义

详细错误原因:

您请求访问控制器 WebTx 的动作 TxList
但控制器 WebTx 对应的类 Controller_WebTx 没有定义。

调用参数 :
Array
(
    [controller] => WebTx
    [action] => TxList
)

解决:

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

Controller/WebTx.php

[Copy To Clipboard]


<?php

// Controller/WebTx.php

class Controller_WebTx extends FLEA_Controller_Action
{

    function actionTxList()
    {

    }
}


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


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

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