gpt4 book ai didi

php - symfony2 中可选的多个 oneToMany 关系

转载 作者:可可西里 更新时间:2023-11-01 08:31:36 26 4
gpt4 key购买 nike

我在 Doctrine Symfony2 中有实体:用户、 channel 、视频和评论;用户可以报告其中之一。我用这些字段设计了 Report 实体:

  • 用户名
  • 状态
  • 报告时间
  • 描述

我如何引用报告的实体 ?? 因为所有报告的字段对于所有实体都是相似的我只想为报告使用一个表并将这些字段添加到报告实体:

  • referenceEntityName(一个字符串,可以是以下之一:用户、 channel 、视频、评论)
  • Channel(与 Channel 实体的多对一关系)
  • 视频(与视频实体的多对一关系)
  • 评论(与评论实体的多对一关系)
  • 用户(与用户实体的多对一关系)

这是最佳实践还是我应该为每种报告创建单独的表格??

编辑:基于@Alex 的回答,我改进了 Report 类并添加了这些方法:

setEntity($entity){
if ($obj instanceof Video){
$this->referenceEntityName = 'Video';
$this->setVideo();
}
elseif($obj instanceof Comment){
$this->referenceEntityName == 'Comment'
$this->setComment();
}
//...
}

getEntity(){

if($this->referenceEntityName == 'Video'){
$this->getVideo()
}// ifelse statements for other entities ...
}

我现在有 4 个关系,每个实例只使用其中一个,是不是有点乱!?再说一次,这是最佳实践还是我应该做些其他事情?如果我想使用FormBuilder类,有什么问题吗??

最佳答案

在一个简单的解决方案中,例如您只有用户(而不是视频、评论和 channel ),解决方案会很简单;每个用户可以有多个报告,每个报告必须只属于一个用户。这是一对多的关系——一个用户有很多报告。在 Symfony 2 和 Doctrine 中,这将被建模为:

// src/Acme/DemoBundle/Entity/User.php

// ...
use Doctrine\Common\Collections\ArrayCollection;

class User
{
// ...

/**
* @ORM\OneToMany(targetEntity="Report", mappedBy="user")
*/
protected $reports;

public function __construct()
{
$this->reports = new ArrayCollection();
}

// ...
}

// src/Acme/DemoBundle/Entity/Report.php

// ...

class Report
{
// ...

/**
* @ORM\ManyToOne(targetEntity="User", inversedBy="reports")
* @ORM\JoinColumn(name="user_id", referencedColumnName="id")
*/
protected $user;

// ...

}

在这种情况下,要创建报告并将其与用户相关联,我们将:

// get the User the Report will belong to
$user = $em->getRepository('AcmeDemoBundle:User')->find(1);
// create the Report
$report = new Report();
// add the User to the Report
$report->setUser($user);
// then persist it, etc ...

请注意,setUser() 方法可用是因为运行了控制台命令以自动生成它们。强烈推荐这样做,因为它为您创建了必要的类型提示。对于 Symfony 2.5 之前的安装,命令是:

php app/console doctrine:generate:entities Acme

>= 2.5安装,命令为:

php bin/console doctrine:generate:entities Acme

您的要求使这个简单的示例有些复杂,因为报告也可以属于评论和视频等。为了便于示例,我们将这些东西称为实体。一个糟糕的方法是简单地向报表添加 3 个新属性,每个属性对应一个新实体,然后为实体添加 3 个新的 setter 方法。这很糟糕,原因有两个:一个报表将只属于一个实体,因此 3 个属性和设置方法将永远不会用于每个报表实体。其次,如果您向业务模型添加新实体或删除实体,则需要编辑报告实体以及数据库架构。

一种更好的方法是在您的报表中简单地拥有一个属性和设置方法,它可以应用于您的所有实体。因此,我们可以调用 setEntity,而不是调用 setUser,并让它接受 4 种方法中的任何一种。考虑到这种方法,让我们回顾一下第一个示例,并且注意为 setUser 方法生成的函数签名中的类型提示:

public function setUser(Acme\DemoBundle\Entity\User $user)

看到它需要是 Acme\DemoBundle\Entity\User 类型。我们如何克服这个问题,让它接受 4 个实体中的任何一个?解决方案是让所有实体都从父类派生。然后在基类做函数类型提示:

public function setUser(Acme\DemoBundle\Entity\Base $entity)

基类将包含所有公共(public)元素,特别是“名称”,以及作为报告的数组集合:

// src/Acme/DemoBundle/Entity/Base.php

// ...
use Doctrine\Common\Collections\ArrayCollection;

class Base
{
// ...

/**
* @ORM\Column(name="name", type="text")
*/
protected $name

/**
* @ORM\OneToMany(targetEntity="Report", mappedBy="baseEntity")
*/
protected $reports;

public function __construct()
{
$this->reports = new ArrayCollection();
}

// ...
}

然后对于每个 child ,例如用户和视频:

// src/Acme/DemoBundle/Entity/User.php

// ...
use AcmeDemoBundle\Entity\Base;

class User extends Base
{
/**
* @ORM\Column(name="firstname", type="text")
*/
protected $firstName;

// ...
}

和视频

// src/Acme/DemoBundle/Entity/Video.php

// ...
use AcmeDemoBundle\Entity\Base;

class Video extends Base
{
/**
* @ORM\Column(name="title", type="text")
*/
protected $title;

// ...

并更改我们的报告实体:

// src/Acme/DemoBundle/Entity/Report.php

// ...

class Report
{
// ...

/**
* @ORM\ManyToOne(targetEntity="Base", inversedBy="reports")
* @ORM\JoinColumn(name="base_id", referencedColumnName="id")
*/
protected $baseEntity;

// ...

}

记得运行 doctrine 命令来生成 setBaseEntity 方法。当您这样做时,请注意它现在将接受任何派生自 Base

的类

然后,以对视频进行报告为例,我们获取视频、创建报告并将视频添加到报告中:

$video = // get the video you want
$report = new Report();
$report->setBaseEntity($video);

要检索属于评论的所有报告,我们获取评论,并获取报告:

$video = // get the video you want
$reports = $video->getReports();
foreach($reports as $report){
$reportText = $report->getText(); // assuming the Report has a `text` field
}

更新:

这些Entities之间的继承关系可以在数据库中用Doctrine using Single Table Inheritance建模:

/**
* @ORM\Entity
* @ORM\Table(name="base_entities")
* @ORM\InheritanceType("SINGLE_TYPE")
* @ORM\Discriminator(name="entity_type", type="string")
* @ORM\DiscriminatorMap({"user" = "User", "comment" = "Comment", "video" = "Video", "channel" = "Channel"})
*/

关于php - symfony2 中可选的多个 oneToMany 关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24839160/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com