使用 JMS 序列化程序将实体关系仅序列化为 Id
2022-08-30 16:25:31
						我正在尝试使用 JMS 序列化程序序列化实体关系。
下面是实体:
class Ad
{ 
    /**
     * @Type("string")
     * @Groups({"manage"})
     * 
     * @var string
     */
    private $description;
    /**
     * @Type("Acme\SearchBundle\Entity\Country")
     * @Groups({"manage"})
     * 
     * @var \Acme\SearchBundle\Entity\Country
     */
    private $country;
    /**
     * @Type("string")
     * @Groups({"manage"})
     * 
     * @var string
     */
    private $title;
    /**
     * Set description
     *
     * @param string $description
     * @return Ad
     */
    public function setDescription($description)
    {
        $this->description = $description;
        return $this;
    }
    /**
     * Get description
     *
     * @return string 
     */
    public function getDescription()
    {
        return $this->description;
    }
    /**
     * Set country
     *
     * @param \Acme\SearchBundle\Entity\Country $country
     * @return Ad
     */
    public function setCountry($country)
    {
        $this->country= $country;
        return $this;
    }
    /**
     * Get country
     *
     * @return string 
     */
    public function getCountry()
    {
        return $this->country;
    }
    /**
     * Set title
     *
     * @param string $title
     * @return Ad
     */
    public function setTituloanuncio($title)
    {
        $this->title = $title;
        return $this;
    }
    /**
     * Get title
     *
     * @return string 
     */
    public function getTitle()
    {
        return $this->title;
    }
}
和关系的实体:
class Country
{
    /**
     * @Type("string")
     * @Groups("manage")
     * 
     * @var string
     */
    private $id;
    /**
     * @Type("string")
     * @Groups("admin")
     * 
     * @var string
     */
    private $description;
    /**
     * Set description
     * @Groups("")
     *
     * @param string $description
     * @return Country
     */
    public function setDescripcionpais($description)
    {
        $this->description = $description;
        return $this;
    }
    /**
     * Get description
     *
     * @return string 
     */
    public function getDescription()
    {
        return $this->description;
    }
    }
    /**
     * Get id
     *
     * @return string 
     */
    public function getId()
    {
        return $this->id;
    }
}
我序列化实体,但我不知道如何将国家/地区属性转换为简单字段。
我在 json 中得到这个结果:
{"description":"foo", "title":"bar", "country":{"id":"en"} }
但是我想像这样获取该国的id字段:
{"description":"foo", "title":"bar", "country": "en" }
使用 JMS 序列化程序是否可行?
谢谢。
[编辑]
@VirtualProperty不起作用。
 
					 
				 
				    		 
				    		 
				    		 
				    		