4

我在使用 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

为什么它仍然给我这个例外?

4

3 回答 3

4

我相当确定这是因为您有两个注释字符串,其中包含整个注释的不同部分。Symfony 只查看类成员前面的注释字符串。

尝试更换:

/** @Type("string")*/
/**
 * @var string $album
 *
 * @ORM\Column(name="album", type="string")*/
protected $album;

和:

/** 
 * @Type("string")
 *
 * @var string $album
 *
 * @ORM\Column(name="album", type="string")*/
protected $album;

(并且在所有其他地方,您都有这些重复的注释注释)

这只是一个猜测,但我认为它会解决它。当我尝试这样做时:

class Something
{
    /**
     * @var integer $id
     * 
     * @ORM\Column(name="id", type="bigint", nullable=false)
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="IDENTITY")
     */
    /**
     * 
     */
    private $id;
}

...Symfony 给了我这个错误:

No identifier/primary key specified for Entity 'SomeApp\SomeBundle\Entity\Something'. Every Entity must have an identifier/primary key.
于 2012-11-30T00:50:22.537 回答
1

我通过将整个项目更新为dev-master包来解决此问题。这似乎是 JMSSerializer 中的一个错误,因为没有修改任何代码,我就停止了这个错误。

于 2013-01-25T12:55:05.760 回答
0
/**
 * @var integer $duration
 *
 * @ORM\Column(name="duration", type="bigint")
 * @Type("int")
 */
protected $duration;

不存在用于序列化的“int”类型,您必须使用“integer”。

于 2015-03-19T15:16:44.227 回答