好吧,这是我迄今为止尝试过的代码。
public class CustomDateEditorRegistrar implements PropertyEditorRegistrar {
public void registerCustomEditors(PropertyEditorRegistry registry) {
registry.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat("MM/dd/yyyy hh:mm a"), true))
registry.registerCustomEditor(Date.class, new StructuredDateEditor(new SimpleDateFormat("MM/dd/yyyy"), true))
}
}
我正在使用一个日历 jQuery 插件和一个常规 grails DatePicker,如果我只使用第一个,我总是在常规 grails Date Picker 上遇到错误。如果我同时使用两者,我就不会再收到错误了。但是,日历只保存日期而不是时间?有任何解决这个问题的方法吗?:(