頁面使用時間插件致使http 400錯誤

頁面使用jquery是採用了時間插件,後臺採用的是springMVC,直接請求的時候會報400錯誤,這是由於沒有使用時間格式轉換,使用時間的時候可使用以下的代碼進行轉換,格式須要根據頁面格式來進行轉換jquery

@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));
}
相關文章
相關標籤/搜索