我有一个基于Symfony 2.7 Framework构建的Rest API,带有FOSRestBundle和JMSSerializerBundle.我看看yml 参考和注释.
我已经选择定义我的模型的每个实体如何用yml序列化.
我已经看到我们可以Datetime
按特定格式序列化对象:
@JMS\Type("DateTime<'d-m-Y'>")
但我不知道yml定义使用的正确语法,我试过:
my_field: expose: true type: datetime format: 'd-m-Y'
和
my_field: expose: true type: datetime<'d-m-Y'>
我不想使用,Annotations
因为我有很多yaml文件.
但该领域尚未序列化 ......
有人可以帮帮我吗?
我把它作为一个答案,以防它帮助更多的人:
my_field: expose: true type: DateTime<'d-m-Y'>