我如何在HTML thymeleaf中使用变量作为参数

时间:2018-12-02 16:39:34

标签: javascript html spring thymeleaf

我在HTML Thymeleaf中使用

<h1 class="timer count-title count-number" data-to="${atendida}"
data-speed="1000"></h1>

data-to="${atendida}"不起作用。我的控制器:

modelAndView.addObject("atendida", size);

在这种情况下,如何使用“ atendida”?

2 个答案:

答案 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>

您可以在Thymeleaf docs under "Setting Attribute Values."

中了解此内容