请求的控制器 text 的动作 index 没有定义

详细错误原因:

您请求访问控制器 text 的动作 index
但该控制器的类定义文件

/data/home/qxu1587660391/htdocs

中没有定义动作 index 对应的方法 actionindex

调用参数 :
Array
(
    [c] => text
    [amp;a] => show
    [amp;id] => 18
)

解决:

请检查文件

/data/home/qxu1587660391/htdocs

中定义的 Controller_Text 类是否编写了 actionindex 方法。
[Copy To Clipboard]


<?php

// 

class Controller_Text extends FLEA_Controller_Action
{

    function actionindex()
    {

    }
}


Exception: FLEA_Exception_MissingAction
Message: 缺少控制器方法 "text::index()".


Filename: /data/home/qxu1587660391/htdocs/libs/FLEA/FLEA/Dispatcher/Simple.php [77]
#3 FLEA_Dispatcher_Simple::_executeAction('text', 'index', 'Controller_Text')

Filename: /data/home/qxu1587660391/htdocs/libs/FLEA/FLEA.php [816]
#2 FLEA_Dispatcher_Simple::dispatching()

Filename: /data/home/qxu1587660391/htdocs/index.php [9]
#1 FLEA::runMVC()