thymeleaf语法
2023-05-12 15:03:17    61    0    0
gaara

https://www.imooc.com/video/16722  友情链接1

https://www.jianshu.com/p/f9ebd23e8da4    简书 友情链接2

url传参数

  1. th:href="@{/hello(pid=1,id=${person.id})}"
  2. 这里需要注意,在模板转化的时候会将这个 ()  自动转换成一个?   类似  xxx?xxx=ssss

onclick传参数   必须按着这个写

  1. <button class="btn" th:onclick="'getName(\'' + ${person.name} + '\');'">获得名字</button> 

post写法:

  1. @RequestMapping("/test")
  2. public String messages(User user) {
  3.      ...
  4.     return "redirect:/post/path";   //跳转到path所在controller处理
  5.     }
  1. <form th:action="@{/test}" th:object="${user}" th:method="post" >
  2.     <input  type="text" th:filed="*{name}" />  //filed 见下方
  3.     <input type="submit" />
  4. </form>

 传值给js

  1. public String messages(Model model) {
  2.     model.addAttribute("message", "hello");
  3.     return "index";
  4.     }
  1. <script th:inline="javascript">
  2.     var message = [[${message}]];
  3.     // 这里有个很强大的功能 [[${message}]] 可以直接放在任何地方充当字符
  4.     var message = “[[${message}]]”;
  5.     console.log(message);
  6. </script>
  7. th:inline="javascript">
  8. 当这样写时,[[${message}]]会自动带上双引号,如果不写,则写啥时啥,
  9. 比如:
  10. <script type="text/javascript">
  11. "openId":"[[${openId}]]"
  12. <script th:inline="javascript">
  13. "openId":[[${openId}]]

操作对象:

  1. User user = UserDao.getUser();
  1. <input th:id="${user.name}" th:name="${user.name}" th:value="${user.name}" />
  2. //或者
  3. <div th:object="${user}">
  4.     <input  th:id="*{name}"   />
  5.     <input  th:id="*{age}"   />
  6. </div>

时间对象:

  1. Date mytime = new Date();
  1.  <input  th:id="*{#dates.format(mytime,'yyyy-MM-dd HH:mm:ss')}"   />

循环集合对象:

  1. List<String> users = new ArrayList<>();
  1. <tr th:each="user:${users}">  //以user为基本单元
  2.     <td th:text="${user.name}"></td>
  3.     <td th:text="${user.age}"></td>
  4. </tr>

复杂循环:

  1. yml:
  2. Spring.messages.basename=roles
  3. Spring.messages.cache-seconds=3600
  4. Spring.messages.encoding=UTF-8
  1. roles.properties文件:
  2. roles.manage=b
  3. roles.superadmin=c
  1. <div th:switch="${user.name}">
  2.     <p th:case=" 'a' "> 这是A </p>
  3.     <p th:case="${roles.manage}"> 这是manage </p>
  4.     <p th:case=" ${roles.superadmin} "> 这是admin </p>
  5.      <p th:case="*"> 这是其他 </p>
  6. </div>

普通文本和富文本

  1. user.set("ha","<font>hahahahahahahaha</font>");

普通

  1. <div  th:text="${ha}"></div>

富文本

  1. <div  th:utext="${ha}"></div>

网址写法:

  1. <a th:href="@{http://xxx.xx.com}"></a>

引入js css

  1. <script  th:src="@{/static/js/xxx/js}"  />
  2. <link th:href="@{/static/css/xxx.css}" />
  3. 在resource目录下的static文件夹里

filed:

  1.  <input  type="text" th:filed="*{name}" /> 
  2.  等同于
  3.   <input  type="text" th:id="*{name}" th:name="*{name}" th:value="*{name}" /> 

判断:

  1. <div  th:if="${user.age} == 18"  > 18</div>
  2. <div  th:if="${user.age} gt 18"  > 18+</div>
  3. <div  th:if="${user.age} lt 18"  > 18-</div>
  4. <div  th:if="${user.age} ge 18"  > 18+=</div>
  5. <div  th:if="${user.age} le 18"  > 18-+</div>
  6. 只显示符合条件的

复杂判断选项的时候可以用循环判断:

  1. <div class="agile-info" th:switch="${error_code}">
  2. <h3>SORRY</h3>
  3. <h2  th:case="403"> 403</h2>
  4. <h2  th:case="402"> 402</h2>
  5. <h2  th:case="*" > 404</h2>
  6. <p>Unfortunately, you do not have permission to access this page.</p>
  7. </div>

选择框:

  1. <select> 
  2. <option th:selectde="${user.name eq 'sss'}"> sss </option>
  3. <option th:selectde="${user.name eq 'xxx'}"> sss </option>
  4. </select>
  5. 会默认为sss

 Ajax:

  1. <script type="text/javascript" th:inline="javascript">
  2.     /*<![CDATA[*/ 
  3.     function ajaxSubmit(){
  4.         var songName = $("#songName").val(); 
  5.         var singer = $("#singer").val();
  6.         $.ajax({ 
  7.             url: [[@{/song/ajaxTest.action}]], 
  8.             type: 'post', 
  9.             dataType: 'json', 
  10.             contentType: 'application/json', 
  11.             data: JSON.stringify({songName : songName,singer : singer}), 
  12.             async: true, 
  13.             success: function(data){ 
  14.                 if(data != null){ 
  15.                     alert('flag : ' + data.flag + " , hintMessage : " + data.hintMessage); 
  16.                 } 
  17.             } 
  18.         }); 
  19.     } 
  20.     /*]]>*/ 
  21. </script>​

 js使用对象:

  1.   <SCRIPT th:inline="javascript">
  2.       // Morris donut chart
  3.       Morris.Donut({
  4.           element: 'browser-usage',
  5.           data: [
  6.               {label: "used", value: [[${free.used}]]},
  7.               {label: "free", value: [[${free.free}]]},
  8.               {label: "shared", value: [[${free.shared}]]},
  9.               {label: "cache", value: [[${free.cache}]]},
  10.               {label: "availabl", value: [[${free.availabl}]]},
  11.           ],
  12.           colors: ['#00a3d8', '#2fbbe8', '#72cae7', '#d9544f', '#ffc100']
  13.       });
  14.   </SCRIPT> 
  15.  ​

 js传数组且不方便用inline直接传

  1. <div id="data2" th:data="${data2}" hidden></div>
  2. var d1 = document.getElementById('data1').getAttribute('data');
  3. var dataArray = JSON.parse(d1);
  4. console.log(dataArray);


Pre: No Post

Next: 随记

61
Sign in to leave a comment.
No Leanote account? Sign up now.
0 comments
Table of content