Add extra fields using JMS Serializer bundle

后端 未结 6 1407
说谎
说谎 2020-12-13 04:03

I\'ve an entity I usually serialize using the JMS Serializer bundle. I have to add to the serialization some fields that doesn\'t reside in the entity itself but are gathere

6条回答
  •  盖世英雄少女心
    2020-12-13 04:34

    I am surprised why nobody have suggested a much more easier way. You need just to use @VirtualProperty:

    getTitle() . $this->getPromo();
    }
    

提交回复
热议问题