1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

API Platformでプロパティがレスポンスに含まれない時の対処法

Last updated at Posted at 2020-09-03

更新情報

2020/09/09 gettersetterの両方に型情報が無い場合にPOSTパラメータに表示されない現象を確認。

はじめに

API Platformを使っていて若干ハマった部分の備忘録

問題

以下のような設定を行っている時に、Bookリソースを取得した時のレスポンスにisPublishedが含まれない。

/**
 * @ApiResource(
 *     normalizationContext={"groups"={"book:read"}},
 *     denormalizationContext={"groups"={"book:write"}},
 *     collectionOperations={
 *          "get"={},
 *          "post"={},
 *     },
 *     itemOperations={
 *          "get"={},
 *          "delete"={},
 *     },
 * )
 *
 * @ORM\Entity(repositoryClass=UserRepository::class)
 */
class Book
{
...
    /**
     * @Groups({"book:read"})
     */
    private $isPublished = false;
...
}

原因

Getterの名前がプロパティ名とズレていた。どうやらAPI PlatformではisPublishedに対するGetterはgetIsPublishedでなければいけない模様。下記のように修正する事で無事レスポンスにisPublishedが含まれました。(どちらかと言うとSymfonyのシリアライザの仕様?)

Phpstormを使っていて、cmd + nからGetterを生やすと、is〇〇系はデフォルトでgetが省略されるのでハマってしまいました...。
Phpstormを使っている方はご注意を。


class Book
{
...
    public function isPublished()
    {
        return $this->isPublished;
    }
...
}


class Book
{
...
    public function getIsPublished()
    {
        return $this->isPublished;
    }
...
}

getter/setterに型が無い場合

getterかsetterのどちらかに型情報があればいい模様。

型情報なし

User.php

...
    /**
     * @Groups({"user:write"})
     */
    private $plainPassword;


    public function getPlainPassword()
    {
        return $this->plainPassword;
    }

    public function setPlainPassword($plainPassword): self
    {
        $this->plainPassword = $plainPassword;

        return $this;
    }
...


スクリーンショット 2020-09-09 1.59.24.png

型情報あり

User.php

...
    /**
     * @Groups({"user:write"})
     */
    private $plainPassword;

    public function getPlainPassword(): ?string
    {
        return $this->plainPassword;
    }

    public function setPlainPassword(?string $plainPassword): self
    {
        $this->plainPassword = $plainPassword;

        return $this;
    }
...


スクリーンショット 2020-09-09 2.01.06.png

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?