我想在我的config.yml我怎麼能在我的自制服務使用getContainer()
services:
myfunc:
class: Acme\TopBundle\MyServices\MyFunc
arguments: []
在Acme的
\ TopBundle \ MyServices使用的EntityManager在自制的服務
\ MyFunc.php
namespace Acme\TopBundle\MyServices;
use Doctrine\ORM\EntityManager;
class MyFunc
{
public $em;
public function check(){
$this->em = $this->getContainer()->get('doctrine')->getEntityManager(); // not work.
.
.
它在調用方法check()時顯示錯誤。
Call to undefined method Acme\TopBundle\MyServices\MyFunc::getContainer()
如何在myFunc類中使用getContainer()?
謝謝你完美地解決了我的問題 – whitebear