当我访问domain.ext / manage时 我得到错误: 致命错误类'查看'找不到
我的代码:
class ManageController extends ControllerBase
{
public function indexAction()
{
$this->view->setRenderLevel(View::LEVEL_ACTION_VIEW);
}
}
这是造成问题的原因
查看:: LEVEL_ACTION_VIEW
答案 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);
}
}