Java.前端模板.Thymleaf

1. Input 日期格式化

1 <input id="renewalDate" name="renewalDate" th:value="${#dates.format(enterpriseDto.renewalDate,'yyyy-MM-dd')}"  class="time-input form-control"  
type
="text" data-format="yyyy-MM-dd">

2. th:field和th:value

thymeleaf里的th:field等同于th:name和th:value,可以省去name。th:field和th:value都有两种从后台接受值的方式:1、${obj.name} 2、*{name}。需要注意的是,th:field需要有th:object指定前台传过来的参数,否则浏览器在解析的时候会出现错误。

3.textaera控件

<textarea name="assertAdvantage" autocomplete="off" maxlength="5000" class="form-control" rows="3"></textarea>
原文地址:https://www.cnblogs.com/initx/p/11249262.html