请求的控制器 Japanese 的动作 Documents 没有定义

详细错误原因:

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

中没有定义动作 Documents 对应的方法 actionDocuments

调用参数 :
Array
(
    [controller] => Japanese
    [action] => Documents
    [ID] => 75
)

解决:

请检查文件

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


<?php

// 

class Controller_Japanese extends FLEA_Controller_Action
{

    function actionDocuments()
    {

    }
}


Exception: FLEA_Exception_MissingAction
Message: 缺少控制器方法 "Japanese::Documents()".


Filename: /var/www/vhosts/yjd-wl.com/httpdocs/FLEA/FLEA/Dispatcher/Simple.php [77]
#3 FLEA_Dispatcher_Simple::_executeAction('Japanese', 'Documents', 'Controller_Japanese')

Filename: /var/www/vhosts/yjd-wl.com/httpdocs/FLEA/FLEA.php [816]
#2 FLEA_Dispatcher_Simple::dispatching()

Filename: /var/www/vhosts/yjd-wl.com/httpdocs/index.php [11]
#1 FLEA::runMVC()