gpt4 book ai didi

php - 共享通用接口(interface)的 Doctrine Embeddables

转载 作者:行者123 更新时间:2023-12-03 21:39:15 24 4
gpt4 key购买 nike

使用 Doctrine Embeddables 时,您必须像这样在属性上声明一个类...

/** @Entity */
class User
{
/** @Embedded(class = "Address") */
private $address;
}

/** @Embeddable */
class Address
{
}

如果您的属性包含一个实现接口(interface)的类会发生什么。例如......我有一个名为 Monthly 或 Weekly 的类,它实现了一个名为 RecurrenceInterface 的接口(interface),我的实体看起来像这样......
/** @Entity */
class Subscription
{
/** @var RecurrenceInterface */
private $recurrence;
}

/** @Embeddable */
class Monthly implements RecurrenceInterface
{
}

如何将实现接口(interface)的东西声明为 Embeddable?

谢谢!

最佳答案

Doctrine 教程说“可嵌入是不是实体本身的类”。上课,没有别的。。
作为解决方案之一,您可以像这样在实体中存储序列化对象

 /**
* @var Settings\SettingsInterface
* @ORM\Column(name="settings", type="object")
*/
private $settings;
在这种情况下, Doctrine 不会 t cares what you store there, and you don t关心存储对象的序列化/反序列化。
此外,您的类中的 setter、getter、on 构造等仍然有类型提示。
 public function __construct(Settings\SettingsInterface $formSettings)
这种解决方案有很多明显的缺点,例如在更改可序列化对象时

关于php - 共享通用接口(interface)的 Doctrine Embeddables,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27627625/

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