gpt4 book ai didi

javascript - 如何在 html thymeleaf 中使用变量作为参数

转载 作者:行者123 更新时间:2023-12-03 00:37:55 25 4
gpt4 key购买 nike

我在 HTML Thymeleaf 中使用

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

但是 data-to="${atendida}" 不起作用。我的 Controller :

modelAndView.addObject("atendida", size);

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

最佳答案

欢迎来到SO。

如果您只想打印对象的值,您可以这样做:

<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." 中阅读相关内容

关于javascript - 如何在 html thymeleaf 中使用变量作为参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53582369/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com