我有一个使用继承的 Doctrine 实体:
/**
* @ORM\Entity
* @ORM\InheritanceType("JOINED")
* @ORM\DiscriminatorColumn(name="discr", type="string")
* @ORM\DiscriminatorMap({"video" = "Video", "text" = "Text", "image" = "Image" })
* @ORM\Table(name="item_block_content")
* @ORM\HasLifecycleCallbacks
*
* @Serializer\Discriminator(field = "discr", map = {
* "text": "Namespace\To\Entity\Text",
* "video": "Namespace\To\Entity\Video",
* "image": "Namespace\To\Entity\Image"
* })
*/
class Content implements interfaces\Response {
...
}
我也有一个包含内容实体集合的项目实体。当我使用 JMSSerializer 将这些实体序列化为 XML 时,我确实看到了一个 discr 列。
<id />
<metadata />
<metadata_technical />
<created>2013-07-01T11:59:50+02:00</created>
<modified>2013-07-01T12:35:51+02:00</modified>
<title>Some title</title>
<text>Some text</text>
<discr>text</discr>
当我想反序列化 XML 时,我得到了预期的结果,但 Content 类除外。它们都是 \Namespace\To\Entity\Content 对象。这样我就无法将更改保存到数据库。
在上面的代码示例中,我已经尝试了@Discriminator注释来指定实体类型,但这不起作用。知道我怎样才能让它工作吗?我想我已经接近了,但我没有想法。
编辑
如果我在父类中进行以下更改:
/**
* @ORM\OneToMany(targetEntity="Namespace\To\Entity\Content", mappedBy="Block", cascade={"persist"})
*
* @Type("ArrayCollection<Namespace\To\Entity\Content>")
*/
至
/**
* @ORM\OneToMany(targetEntity="Namespace\To\Entity\Content", mappedBy="Block", cascade={"persist"})
*
* @Type("ArrayCollection<Namespace\To\Entity\Text>")
*/
而且我只添加 Text 元素使其正常工作,但添加其他元素(当然)会中断。