请求的控制器 animation_html 没有定义

详细错误原因:

您请求访问控制器 animation_html 的动作 index
但控制器 animation_html 对应的类 Controller_animation_html 没有定义。

调用参数 :
Array
(
    [controller] => animation_html
)

解决:

请检查是否创建了 Controller_animation_html 类的定义文件:

Controller/animation/html.php

[Copy To Clipboard]


<?php

// Controller/animation/html.php

class Controller_animation_html extends FLEA_Controller_Action
{

    function actionindex()
    {

    }
}


Exception: FLEA_Exception_MissingController
Message: 缺少控制器 "animation_html".


Filename: /var/www/vhosts/acty-d.com/httpdocs/FLEA/FLEA/Dispatcher/Simple.php [77]
#3 FLEA_Dispatcher_Simple::_executeAction('animation_html', 'index', 'Controller_animation_html')

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

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