1

现在我有很多实体:

#[ORM\Column(type: 'datetime')]
#[Groups(['article_category:output'])]
/**
 * @Timestampable(on="create")
 */
private \DateTime $createdAt;

public function getCreatedAt(): \DateTime
{
    return $this->createdAt;
}

我想把它放在 Trait 里面。但是每个实体都有自己的规范化组(如 'article_category:output')。我怎样才能让这个字段在 API 平台上始终可用?

4

1 回答 1

0

我们做了什么:

在你的特质中使用一个组,例如timestampable

trait TimestampableEntity
{
    /**
     * ...
     * @Groups({"timestampable"})
     */
    protected $createdAt;

    ...
}

然后,每当您想公开时间戳时,将它们添加到您的配置中(您可以将多个组添加到操作中)

<?php
/**
 * @ApiResource(
 *     collectionOperations= {
 *          "get" = {
 *              "normalization_context"={"groups"={"appointment:read", "timestampable"}},
 *           },
 *     },
 * )
 */
class Appointment
{
    use TimestampableEntity;



于 2021-11-10T15:12:38.200 回答