当我有一个从另一个实体继承的实体时,我遇到了 Platform API ( https://api-platform.com/ ) 的问题。例如,继承自 User 实体的 Worker 实体。当我转到 Platform API 文档时,所有 Worker 属性都出现在 User 类中
模式比解释更好。这是我的两个实体和有问题的文档的结果
/**
* User
*
* @ORM\Table(name="user")
* @ORM\InheritanceType("SINGLE_TABLE")
* @ORM\DiscriminatorColumn(name="discr", type="string")
* @ORM\DiscriminatorMap({"user" = "User", "worker" = "Worker"})
* @ApiResource
*
*/
class User
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @var string
*
* @ORM\Column(name="lastname", type="string", length=255)
*/
protected $lastname;
/**
* @var string
*
* @ORM\Column(name="firstname", type="string", length=255)
*/
protected $firstname;
/**
* Get id
*
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* Set lastname
*
* @param string $lastname
* @return User
*/
public function setLastname($lastname)
{
$this->lastname = $lastname;
return $this;
}
/**
* Get lastname
*
* @return string
*/
public function getLastname()
{
return $this->lastname;
}
/**
* Set firstname
*
* @param string $firstname
* @return User
*/
public function setFirstname($firstname)
{
$this->firstname = $firstname;
return $this;
}
/**
* Get firstname
*
* @return string
*/
public function getFirstname()
{
return $this->firstname;
}
}
/**
* Worker
*
* @ApiResource
*/
class Worker extends User
{
/**
* @var \DateTime
*
* @ORM\Column(name="birthday", type="datetime")
* @Assert\NotNull()
* @Assert\DateTime()
*/
private $birthday;
/**
* @var string
*
* @ORM\Column(name="mobilePhone", type="string", length=255, nullable=true)
*/
private $mobilePhone;
/**
* @return \DateTime
*/
public function getBirthday(): \DateTime
{
return $this->birthday;
}
/**
* @param \DateTime $birthday
*/
public function setBirthday(\DateTime $birthday)
{
$this->birthday = $birthday;
}
/**
* @return string
*/
public function getMobilePhone(): string
{
return ($this->mobilePhone == null) ? '' : $this->mobilePhone;
}
/**
* @param string $mobilePhone
*/
public function setMobilePhone(string $mobilePhone)
{
$this->mobilePhone = $mobilePhone;
}
}
这就是问题所在。我们看到 Worker 子类的属性出现在 User 类的模型中。当我测试发送 POST 方法时,它返回一个包含 Worker 实体属性的用户实体