我已经在StackOverflow上搜索并阅读了Doctrine文档的相应章节(http://docs.doctrine-project.org/projects/doctrine-mongodb-odm/en/latest/index.html),但无法找到我正在寻找的内容。
我使用Doctrine MongoDB v1.1和MongoDB v3.0.14数据库处理使用Symfony v2.8制作的API。
我有两个不同的文件:" Spot"和"功能"。 A" Spot"包含文档" Feature"的集合,具有ReferenceMany关系:
// Spot document declaration
/**
* @var \Transversal\SessionBundle\Document\Feature
* @MongoDB\ReferenceMany(strategy="set", targetDocument="Transversal\SessionBundle\Document\Feature", sort={"uploadDate"="asc"})
* @Serializer\Expose
*/
protected $features = array();
我正在使用Spot创建路线/控制器,我需要发送Spot名称,描述以及我想要添加到现场的现有功能列表。
我现在正在做的是在请求正文中发送名称,描述和一系列功能ID。 然后,在控制器中,我遍历这个数组,并为每个id:
$spot->addFeature()
方法然后我坚持并冲洗以保存新创建的点。 这是我的控制器方法的代码(我修改了代码以使其更具可读性):
* @Rest\Post("")
* @return \Symfony\Component\HttpFoundation\JsonResponse
* @throws BosHttpException
*/
public function createAction()
{
$spot = new Spot();
$request = $this->getCurrentRequest();
// retrieve the name and description for the new spot here
$form = $this->createForm(SpotType::class, $spot);
$form->handleRequest($request);
$content = $request->getContent();
$params = "";
if (!empty($content)) {
$params = json_decode($content, true);
}
$document_manager = $this->getDocumentManager();
$featureIds = $params['featureIds'];
foreach ($featuresIds as $featureId) {
$feature = $document_manager->find('Transversal\SessionBundle\Document\Feature', $featureId);
$spot->addFeature($feature);
}
$document_manager = $this->getDocumentManager();
$document_manager->persist($spot);
$document_manager->flush();
return $this->getOutputView("Spot creation - succeed", Codes::HTTP_CREATED, $this->formatResponse(null, true));
}
以下是Spot.php文件中addFeature()的代码:
/**
* Add feature
*
* @param \Transversal\SessionBundle\Document\Feature $feature
*/
public function addFeature(\Transversal\SessionBundle\Document\Feature $feature)
{
$this->features[] = $feature;
}
这意味着如果我有一个包含20个功能ID的数组,我的foreach循环将请求20次我的数据库,我知道它不是一个可行的解决方案(我知道我可能会使用一个要求得到他们所有,但这不是我正在寻找的。)
有没有办法将功能分配到Spot而不必生成它们的实例并请求我的数据库,知道有引用?
提前感谢您的帮助!
答案 0 :(得分:0)
这是一个如何使用@ParamConverter传递$ feature的id而不是对象的示例
use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
/**
* @ParamConverter("feature", class="YourBundle:Feature")
*/
public function addFeature(\Transversal\SessionBundle\Document\Feature $feature){
$this->features[] = $feature;
}
这意味着如果你让这样的代码
foreach($featuresIds as $featureId) {
$spot->addFeature($featureId);
}
也会起作用,因为教义应该认识到你作为参数传递的id是'功能的ID。实体。无论如何,ORM正在进行查询以获取对象,您可以尝试比较时间。