我在使用 JMSSerializerBundle 时遇到了这个问题。对于我已经做过的事情,它基本上给了我一个例外。这是我的实体:
编辑以避免混淆注释线
<?php
namespace My\ProjectBundle\Entity;
use JMS\SerializerBundle\Annotation\Type;
use Doctrine\ORM\Mapping as ORM;
/**
* My\ProjectBundle\Entity\Music
*
* @ORM\Table()
* @ORM\Entity(repositoryClass="My\ProjectBundle\Entity\MusicRepository")
*/
class Music extends Post
{
/**
* @var integer $id
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @var string $album
*
* @ORM\Column(name="album", type="string")
* @Type("string")
*/
protected $album;
/**
* @var string $artist
*
* @ORM\Column(name="artist", type="string")
* @Type("string")
*/
protected $artist;
/**
* @var integer $duration
*
* @ORM\Column(name="duration", type="bigint")
* @Type("int")
*/
protected $duration;
/**
* @var string $title
*
* @ORM\Column(name="title", type="string")
* @Type("string")
*/
protected $title;
/**
* @var array $genres
*
* @ORM\Column(name="genres", type="array")
* @Type("array")
*/
protected $genres;
如您所见,我@Type()
为字段添加了注释,但是当我调用时它仍然给我异常:
$listenedMusic = $serializer->deserialize($content, 'My\ProjectBundle\Entity\Music', 'json');
我已经检查过,$content
变量不为空,并且所有字段都以 JSON 格式映射。
在我的 Monolog 文件中,这是确切的例外:
[2012-11-29 23:39:07] request.CRITICAL: JMS\SerializerBundle\Exception\RuntimeException:
You must define a type for My\ProjectBundle\Entity\Music::$album. (uncaught exception)
at /vendor/jms/serializer-bundle/JMS/SerializerBundle/Serializer/GenericDeserializationVisitor.php line 177
为什么它仍然给我这个例外?