我在HTML Thymeleaf中使用
<h1 class="timer count-title count-number" data-to="${atendida}"
data-speed="1000"></h1>
但data-to="${atendida}"
不起作用。我的控制器:
modelAndView.addObject("atendida", size);
在这种情况下,如何使用“ atendida”?
答案 0 :(得分:0)
<h1 class="timer count-title count-number" data-speed="1000" th:attr="data-to=${atendida}"></h1>
答案 1 :(得分:0)
欢迎来到。
如果您只想打印对象的值,则可以执行以下操作:
<h1 class="timer count-title count-number" th:text="${atendida}"
data-speed="1000">Some Timer</h1>
如果您具有自定义属性值,则可以进行
<h1 class="timer count-title count-number" th:attr="data-to=${atendida}"
data-speed="1000">Timer</h1>
如果您想同时使用这两个属性,则可以执行以下操作:
<h1 class="timer count-title count-number" th:attr="data-to=${atendida},data-speed=${someSpeed}">Timer</h1>
中了解此内容