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

详细错误原因:

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

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

调用参数 :
Array
(
    [controller] => front
    [action] => 搜索
)

解决:

请检查文件

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


<?php

// 

class Controller_front extends FLEA_Controller_Action
{

    function actionindex()
    {

    }
}


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


Filename: /var/www/html/sdd1f/new/lib/FLEA/FLEA/Dispatcher/Simple.php [77]
#3 FLEA_Dispatcher_Simple::_executeAction('front', 'index', 'Controller_front')

Filename: /var/www/html/sdd1f/new/lib/FLEA/FLEA.php [816]
#2 FLEA_Dispatcher_Simple::dispatching()

Filename: /var/www/html/sdd1f/index.php [23]
#1 FLEA::runMVC()