gpt4 book ai didi

java - Thymeleaf:检查是否定义了变量

转载 作者:IT老高 更新时间:2023-10-28 13:46:40 26 4
gpt4 key购买 nike

如何检查 Thymeleaf 中是否定义了变量

在 Javascript 中是这样的:

if (typeof variable !== 'undefined') { }

或者 PHP 中的这个:

if (isset($var)) { }

Thymeleaf 中是否有等价物?

最佳答案

是的,您可以使用以下代码轻松检查文档是否存在给定属性。请注意,如果满足条件,您将创建 div 标记:

<div th:if="${variable != null}" th:text="Yes, variable exists!">
I wonder, if variable exists...
</div>

如果您想使用 variable 的字段,则值得检查该字段是否也存在

<div th:if="${variable != null && variable.name != null}" th:text="${variable.name}">
I wonder, if variable.name exists...
</div>

甚至更短,不使用 if 语句

<div th:text="${variable?.name}">
I wonder, if variable.name exists...
</div>`

但是使用此语句,您将结束创建 div 标记,无论 variablevariable.name 是否存在

您可以在 thymeleaf here 中了解有关条件的更多信息

关于java - Thymeleaf:检查是否定义了变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28783385/

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