thymeleaf怎么获取model的值

avatar
作者
筋斗云
阅读量:6

在Thymeleaf中,可以通过使用${}表达式来获取model中的值。下面是一些示例:

  1. 获取字符串值:

    <span th:text="${modelValue}"></span>

    这将在<span>标签中显示model中名为modelValue的字符串值。

  2. 获取对象属性值:

    <span th:text="${modelObject.property}"></span>

    这将在<span>标签中显示model中名为modelObject的对象的property属性值。

  3. 使用Thymeleaf内置的迭代变量来遍历集合:

    <ul>     <li th:each="item : ${modelList}" th:text="${item}"></li> </ul> 

    这将在一个无序列表中显示model中名为modelList的集合中的每个元素。

注意:在使用Thymeleaf获取model的值时,需要确保model中的值已经在controller中设置好了。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!