美文网首页
JSP中时间Date类型的转换

JSP中时间Date类型的转换

作者: Ch思磊 | 来源:发表于2017-08-08 14:55 被阅读0次

若后台传给前端的时间字段类型是Date,需要前端——

  1. 在jsp中的顶部加入
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
  1. 若是input[type="date"],只需在其value=""中加入:
<fmt:formatDate value='${这里填后端传递的时间字段}' pattern='yyyy-MM-dd' />

相关文章

网友评论

      本文标题:JSP中时间Date类型的转换

      本文链接:https://www.haomeiwen.com/subject/awdylxtx.html