请求的控制器 Default 的动作 List 没有定义

详细错误原因:

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

/data/www.chinabrake.com/enwww

中没有定义动作 List 对应的方法 actionList

调用参数 :
Array
(
    [%20controller] => Products
    [action] => List
    [nid] => 230
)

解决:

请检查文件

/data/www.chinabrake.com/enwww

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


<?php

// 

class Controller_Default extends FLEA_Controller_Action
{

    function actionList()
    {

    }
}


Exception: FLEA_Exception_MissingAction
Message: 缺少控制器方法 "Default::List()".


Filename: /data/www.chinabrake.com/enwww/FLEA/FLEA/Dispatcher/Simple.php [77]
#3 FLEA_Dispatcher_Simple::_executeAction('Default', 'List', 'Controller_Default')

Filename: /data/www.chinabrake.com/enwww/FLEA/FLEA.php [818]
#2 FLEA_Dispatcher_Simple::dispatching()

Filename: /data/www.chinabrake.com/enwww/index.php [11]
#1 FLEA::runMVC()