1. 程式人生 > >thymeleaf標籤之th:text的使用

thymeleaf標籤之th:text的使用

th:text
如果是需要從model中取值的話 寫法為th:text="${model的name}"
th:text="${childD.name}"
如果是需要字串與model中的值進行拼接的話,寫法為th:text="'字串'+${model的name}"
th:text="'姓名:'+${childD.name}"