欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

前端笔记-thymeleaf获取及回显input标签type="time"

程序员文章站 2023-12-27 08:49:27
...

前端效果如下:

前端笔记-thymeleaf获取及回显input标签type="time"

设置的时候就是这样的

前端笔记-thymeleaf获取及回显input标签type="time"

前端代码如下:

<div class="form-group">
		<label>开课时间</label>
		<input  class="form-control" type="time"
				name="beginTime"
				th:value="${people!=null}?${#dates.format(people.beginTime, 'HH:mm')}" />
</div>

从中可以看到,如果people为null就不设置数据,当有people时格式更新为‘HH:mm’的形式

 

这里beginTime直接是Datetime类型

前端笔记-thymeleaf获取及回显input标签type="time"

这里获取前端数据为String类型,将它转为date类型或者datetime类型即可:

前端笔记-thymeleaf获取及回显input标签type="time"

@RequestPara("beginTime") String beginTime

 

上一篇:

下一篇: