我使用以下内容在view/users/index.ctp
中呈现元素:
$this->renderElements('users/lmenu');
但是当在布局default.ctp
中使用相同的行时,我收到错误:
Call to undefined method View::renderElements()
如何在布局中显示元素?
答案 0 :(得分:2)
CakePHP 1.3和2.0中不推荐使用
renderElement()
。请尝试使用$this->element()