最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Symfony2 在service中如何使用Doctrine
时间:2022-06-25 02:49:29 编辑:袖梨 来源:一聚教程网
在service中有个方法需要调用Doctrine,使用
代码如下 | 复制代码 |
$user = $this->getDoctrine()->getRepository('AtotrukisMainBundle:User') |
提示"getDoctrine"找不到,那么我们应该怎么做呢?
解决方法:
第一步:
在service配置文件中添加arguments
代码如下 | 复制代码 |
eventService: class: Atotrukis\MainBundle\Service\EventService arguments: ["@doctrine.orm.entity_manager"] |
第二步:
在service对应的class:Atotrukis\MainBundle\Service\EventService中增加如下代码:
代码如下 | 复制代码 |
protected $em; public function __construct($em) { $this->em = $em; } |
相关文章
- 第五人格秋分线下活动在哪里 第五人格2024二十四节气佛山场介绍 09-10
- 《三角洲行动》乌鲁鲁获取方法 09-10
- 《三角洲行动》仓库扩容箱获取方法 09-10
- 《三角洲行动》高概率刷出大金的点位一览 09-10
- 《三角洲行动》卡包获取方法 09-10
- 《三角洲行动》系统邮件打不开解决方法 09-10