2
単一のエンティティオブジェクトをシリアル化してデシリアライズしてください。Symfony3複数のエンティティオブジェクトを逆シリアル化する
このように複数のオブジェクト(オブジェクトの配列)を直列化および逆シリアル化することは可能ですか?
$notifications = $this->getDoctrine()
->getRepository('AppBundle:Notification')
->findAll();
$encoder = new JsonEncoder();
$normalizer = new ObjectNormalizer();
$serializer = new Serializer(array($normalizer), array($encoder));
$jsonContent = $serializer->serialize($notifications, 'json');
return new Response($jsonContent);
そして
$response = curl_exec($ch); // my $jsonContent from previous code
$encoder = new JsonEncoder();
$normalizer = new ObjectNormalizer();
$serializer = new Serializer(array($normalizer), array($encoder));
$notifications = $serializer->deserialize($response, Notification::class, 'json');
それから私は得た:
プロパティパスのコンストラクタは、文字列または のインスタンス "のSymfony \コンポーネント\ PropertyAccess \のPropertyPath" を必要とします。ガット:「整数」500 内部サーバーエラー - にUnexpectedValueException
は、ウィルは愚かに聞こえるが、エラーメッセージがあなたの財産パスコンストラクタはインスタンスを待っている...あなたのすべてを教えてくれない解決策を見つけました[PropertyAccess](http://symfony.com/doc/current/components/property_access.html)の子である「PropertyPath」の名前です。しかし、あなたのコンストラクタはIntegerをパラメータとして取得しますが、これは明らかに間違っています。 construtorとそれに関連するすべてを質問plzに追加できますか? – Preciel