您能否建议我一个解决方案,如何从Symfony 3中的服务中访问学说?我从控制器中将学说的对象发送到构造函数中创建的服务对象,但我不确定是否是最佳选择。
您能推荐我一个更好的解决方案吗?
public function editGroupAction($groupId) {
$doctrine = $this->getDoctrine();
$roleHelper = new RoleHelper($doctrine);
}
您可以像这样注入它:
use DoctrineORMEntityManagerInterface;
private $em;
public function __construct(EntityManagerInterface $entityManager) {
$this->em = $entityManager;
}