如何在 thymeleaf th:if 中调用 javascript 函数?
我想在'th:if'中调用javascript函数。 这是我的代码。
<li th:each="dto, stat : ${list}" th:if="${stat.count>10}">
<span th:if="'javascript:isNew('+${dto.regDts}+');'">blah blah</span>
</li>
...
<script th:inline="javascript">
function isNew(date) {
if (...) {
return true;
}
return false;
}
</script>
但它不调用 isNew()。
所以当我这样写时......
<span th:if="isNew(${dto.regDts});">blah blah</span>
我遇到了错误。
如何在“th:if”中调用javascript函数?
I want to call javascript function in 'th:if'.
This is my code.
<li th:each="dto, stat : ${list}" th:if="${stat.count>10}">
<span th:if="'javascript:isNew('+${dto.regDts}+');'">blah blah</span>
</li>
...
<script th:inline="javascript">
function isNew(date) {
if (...) {
return true;
}
return false;
}
</script>
but it doesn't call isNew().
so when I wrote like this...
<span th:if="isNew(${dto.regDts});">blah blah</span>
i got an error.
how can I call javascript function in "th:if"?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Thymeleaf 在服务器中生成 HTML 并将其传递到浏览器。那时,Thymeleaf 不再“活跃”。 JavaScript 使用 Thymeleaf 生成的 HTML 在浏览器中运行。所以不可能像这样做你想做的事。
最简单的解决方案是在所使用的 Java 对象上添加额外的方法或属性。假设您在 dto 上添加一个
isNew()
方法,那么您可以执行以下操作:Thymeleaf generates HTML in the server and passes that to the browser. At that point, Thymeleaf is no longer "active". JavaScript runs in the browser using the HTML that Thymeleaf has generated. So it is impossible to do what you want like this.
The easiest solution is to add an extra method or property on the Java object that is used. Suppose you add an
isNew()
method on your dto, then you can do: