本文介绍了Symfony2 - 调用未定义的方法getDoctrine()覆盖FOSUserBundle的ProfileController的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我覆盖FOSUserBundle的 ProfileController 并添加以下行:

  $ em = $ this-> getDoctrine() - > getManager(); 
$ resultat = $ em-> getRepository('PublishDemandsBundle:需求') - > findAll();

我收到以下错误:

解决方案

Adding this alias-method to the controller fixed the issue:

public function getDoctrine()
{
    return $this->container->get('doctrine');
}

这篇关于Symfony2 - 调用未定义的方法getDoctrine()覆盖FOSUserBundle的ProfileController的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-18 22:05