页面使用时间插件导致http 400错误

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

页面使用jquery是采用了时间插件,后台采用的是springMVC,直接请求的时候会报400错误,这是因为没有使用时间格式转换,使用时间的时候可以使用如下的代码进行转换,格式需要根据页面格式来进行转换

@InitBinder
public void initBinder(WebDataBinder binder) {
    SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH");
    dateFormat.setLenient(false);
    binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
}

转载于:https://my.oschina.net/u/2353881/blog/785865

你可能感兴趣的:(页面使用时间插件导致http 400错误)