大家好,我有这样的基础课
class IndexController extends ControllerBase
{
public function onConstruct(){
}
public function indexAction()
{
return $this->view->pick(array("login/login"));
}
}
我希望它呈现登录文件夹和 login.volt 中的内容
事情是,它正在渲染它,但它也在渲染 index.volt 中的内容,并且具有以下内容
<!DOCTYPE html>
<html>
<head>
<title>Phalcon PHP Framework</title>
</head>
<body>
{{ content() }}
</body>
</html>
所以我得到了双 html 双体等
有人可以告诉我为什么会发生这种情况和/或建议修复。多谢你们