标签: templates symfony bundle
我对编写的代码量感到沮丧,只是为了包含模板,我想知道是否有办法在不编写捆绑名称的情况下在同一个包中包含控制器或模板的模板?
所以不要这样:
$this->render('AcmeBlogBundle:Controller:template.html.php');
我可以这样写:
$this->render('::template.html.php')
这是重复代码,这是一种耻辱。