phalcon - >致命错误类'查看'未找到

时间:2014-05-17 12:30:59

标签: phalcon

当我访问domain.ext / manage时 我得到错误: 致命错误类'查看'找不到

我的代码:

class ManageController extends ControllerBase
{
    public function indexAction()
    {
        $this->view->setRenderLevel(View::LEVEL_ACTION_VIEW);
    }
}

这是造成问题的原因

  

查看:: LEVEL_ACTION_VIEW

1 个答案:

答案 0 :(得分:2)

您正在引用constant from Phalcon\Mvc\View。 在代码中为此类添加“使用”。

use Phalcon\Mvc\View;

class ManageController extends ControllerBase
{
    public function indexAction()
    {
        $this->view->setRenderLevel(View::LEVEL_ACTION_VIEW);
    }
}