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

详细错误原因:

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

中没有定义动作 312 对应的方法 action312

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

解决:

请检查文件

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


<?php

// 

class Controller_front extends FLEA_Controller_Action
{

    function action312()
    {

    }
}


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


Filename: /var/www/html/sdd1f/new/lib/FLEA/FLEA/Dispatcher/Simple.php [77]
#3 FLEA_Dispatcher_Simple::_executeAction('front', '312', '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()