让你明白我的意思,我将从一个例子开始。 想象一下,我有一个包(MainBundle),其中包含我的整个besite。 我想创建一个新的包(CommentBundle),我将在我的MainBundle中使用它来显示每篇文章中的注释。
如何调用CommentBundle的控制器,在我的MainBundle中显示想要的注释? 我的意思是,很难想象这是怎么可能的。
但是我听说为此目的创建了捆绑包的面孔,所以我想学会写它。
有人可以给我一些建议吗?
谢谢
编辑:
我做了这个,但是它回复了我"调用成员函数has()on null"
public function indexAction()
{
$commentController = new \CommentBundle\Controller\DefaultController();
$comments = $commentController->indexAction();
return new Response($comments);
}