Sonata DateTimePickerType类默认日期显示错误的日期时间格式
我搞不懂如何使用sonata DateTimePickerType类正确设置默认日期和时间。我尝试了不同的方法,但到目前为止,没有一种方法不起作用。在下面的屏幕截图中,"Help"键显示了正确的日期和时间,但当我使用"DP_Defaul_Date"时,情况就崩溃了。而且,日期和时间来自同一个对象实例。有什么主意吗?提前谢谢。
解决方案
对于可能遇到相同问题的人,经过几个小时的尝试,我是这样做的:
$formMapper
->add('dateOfAdoption', 'sonata_type_datetime_picker',
[
'dp_default_date' => $container->getCreatedAt()->format('d M. Y H:i '),
'datepicker_use_button' => true,
'mapped' => false,
]
);
Note:
d - The day of the month (from 01 to 31)
M - A short textual representation of a month (three letters)
Y - A four digit representation of a year
H - 24-hour format of an hour (00 to 23)
i - Minutes with leading zeros (00 to 59)
相关文章