当我调用ajax将信息保存在数据库中时,我的日历始终将日期从2018年更改为2000年。
<h:form id="calendarform">
<p:calendar value="#{BeanSchedule.datSendDate}" mask="99/99/9999" locale="pt_BR">
<f:convertDateTime pattern="dd/MM/yyyy" />
</p:calendar>
<p:commandButton ajax="true"
value="SALVAR"
class="btn-large"
actionListener="#{BeanSchedule.save()}"
update="@form"
>
在调用ajax之前。 The date is correct
调用ajax后,您可以看到,日期已更改为2000s Date changed to 2000s
如何阻止它?