我从其他模块渲染视图时遇到问题。
例如:我在页面news.phtml上,我需要添加'添加评论'页。添加评论的观点在其他模块中,评论'在文件add.phtml。
我不知道如何在新闻页面上包含此文件。 我尝试过这样的事情:
echo $this->render('module/Comments/view/comments/index/add.phtml');
echo $this->render('../../Comments/view/comments/index/add.phtml');
但没有任何作用。 我怎么能这样做?
答案 0 :(得分:1)
您需要使用partial
查看助手
echo $this->partial('comments/index/add');