具有多种情况的 Thymeleaf switch 语句
Thymleaf switch statement with multiple case
简而言之
我想在 thymeleaf 中使用 switch 语句,逻辑一旦写入多个 case 语句。
详细
我想在百里香中实现这个
switch(status.value){
case 'COMPLETE':
case 'INVALID':
//print exam is not active
break;
case 'NEW':
//print exam is new and active
break;
}
我当前的 thymleaf 代码因运行时错误而失败
<div th:switch="${status.value}">
<div th:case="'COMPLETE','INVALID'">
<!-- print object is not active -->
</div>
<div th:case="NEW'">
<!-- print object is new and active -->
</div>
</div>
但是上面的代码失败并报错
org.thymeleaf.exceptions.TemplateProcessingException: Could not parse as expression: "'COMPLETE','INVALID'"...
注意:我知道上述错误消息的原因。我所需要的只是知道一种方法来为单个输出实现具有多个案例的开关
失败是因为您在第一种情况下没有有效的表达式。具体来说,
'COMPLETE','INVALID'
不是有效的表达式。我怀疑您正在尝试做的是在状态为 COMPLETE 或 INVALID 时包含 div。不幸的是,我相信您将不得不在 dividually 中复制这些条件的标记。让我建议以下标记:
<!-- th:block rather than unneeded div -->
<th:block th:switch="${status.value}">
<div th:case="'COMPLETE'">
<!-- print object is not active -->
</div>
<div th:case="'INVALID'">
<!-- print object is not active -->
</div>
<div th:case="'NEW'">
<!-- print object is new and active -->
</div>
</th:block>
或者,您可以求助于 th:if,在这种情况下它实际上可能效果更好:
<div th:if="${status.value} eq 'COMPLETE' or ${status.value} eq 'INVALID'">
<!-- print object is not active -->
</div>
<div th:if="${status.value} eq 'NEW'">
<!-- print object is new and active -->
</div>
或者更简单:
<div th:unless="${status.value} eq 'NEW'">
<!-- print object is not active -->
</div>
<div th:if="${status.value} eq 'NEW'">
<!-- print object is new and active -->
</div>
我今天遇到了同样的问题,我的 th:switch
中使用的对象是 Java 枚举。我最终发现这是 Java equals() 与 == 的问题。在 th:switch
中我有一个枚举对象,但在我的 th:case
中我有一个字符串对象。我通过使用 Thymeleaf 字符串函数将枚举对象转换为字符串来解决它,然后一切正常。
<div th:switch="${#strings.toString(datafile.status)}">
<td th:case="'SUCCESS'" class="table-success">SUCCESS</td>
<td th:case="'FAILED'" class="table-danger">FAILED</td>
<!-- default case -->
<td th:case="*" th:text="${#strings.toString(datafile.status)}" class="table-secondary">xxx</td>
</div>
在上面的示例中,我使用开关有条件地将 Bootstrap 样式应用于 table 单元格。
另一种解决方案是在 Java 代码中执行逻辑并将输出值公开为对象 属性,然后仅在 Thymeleaf 模板中引用该 属性。像这样:
public String getBootstrapTableRowClassForStatus() {
Objects.requireNonNull(status);
switch (status) {
case SUCCESS:
return "table-success";
case FAILED:
return "table-danger";
case PROCESSING:
return "table-info";
default:
return "table-secondary";
}
}
然后我使用 Thymeleaf th:class
:
<tr th:class="${datafile.bootstrapTableRowClassForStatus}">
在我的页面上,这将根据 Java 对象中状态枚举的值将 Bootstrap 颜色样式应用于我的 table 行。
pens-fan-69 回答了这种类型的切换
switch(status.value){
case 'COMPLETE':
case 'INVALID':
break;
case 'NEW':
break;
}
只能在 Thymeleaf 中翻译成以下 switch
语句(如果你想保留 switch-case
语法)并且不能用 if-else
回复它
<th:block th:switch="${status.value}">
<div th:case="'COMPLETE'">
<!-- print object is not active -->
</div>
<div th:case="'INVALID'">
<!-- print object is not active -->
</div>
<div th:case="'NEW'">
<!-- print object is new and active -->
</div>
</th:block>
我遇到了一个问题,在这种情况下我不得不复制很多 HTML 代码(在本例中是 COMPLETE
和 INVALID
)。这可以通过使用 th:fragment
并像这样重用它们来缓解:
<th:block th:fragment="complete-or-invalid-case">
<!-- your HTML for complete or invalid case -->
</th:block>
<th:block th:fragment="new-case">
<!-- your HTML for new case -->
</th:block>
然后在 switch
中您可以重用这些块,从而减少代码的重复性
<th:block th:switch="${status.value}">
<div th:case="'COMPLETE'" th:include="this :: complete-or-invalid-case"></div>
<div th:case="'INVALID'" th:include="this :: complete-or-invalid-case"></div>
<div th:case="'NEW'" th:include="this :: new-case"></div>
</th:block>
简而言之
我想在 thymeleaf 中使用 switch 语句,逻辑一旦写入多个 case 语句。
详细
我想在百里香中实现这个
switch(status.value){
case 'COMPLETE':
case 'INVALID':
//print exam is not active
break;
case 'NEW':
//print exam is new and active
break;
}
我当前的 thymleaf 代码因运行时错误而失败
<div th:switch="${status.value}">
<div th:case="'COMPLETE','INVALID'">
<!-- print object is not active -->
</div>
<div th:case="NEW'">
<!-- print object is new and active -->
</div>
</div>
但是上面的代码失败并报错
org.thymeleaf.exceptions.TemplateProcessingException: Could not parse as expression: "'COMPLETE','INVALID'"...
注意:我知道上述错误消息的原因。我所需要的只是知道一种方法来为单个输出实现具有多个案例的开关
失败是因为您在第一种情况下没有有效的表达式。具体来说,
'COMPLETE','INVALID'
不是有效的表达式。我怀疑您正在尝试做的是在状态为 COMPLETE 或 INVALID 时包含 div。不幸的是,我相信您将不得不在 dividually 中复制这些条件的标记。让我建议以下标记:
<!-- th:block rather than unneeded div -->
<th:block th:switch="${status.value}">
<div th:case="'COMPLETE'">
<!-- print object is not active -->
</div>
<div th:case="'INVALID'">
<!-- print object is not active -->
</div>
<div th:case="'NEW'">
<!-- print object is new and active -->
</div>
</th:block>
或者,您可以求助于 th:if,在这种情况下它实际上可能效果更好:
<div th:if="${status.value} eq 'COMPLETE' or ${status.value} eq 'INVALID'">
<!-- print object is not active -->
</div>
<div th:if="${status.value} eq 'NEW'">
<!-- print object is new and active -->
</div>
或者更简单:
<div th:unless="${status.value} eq 'NEW'">
<!-- print object is not active -->
</div>
<div th:if="${status.value} eq 'NEW'">
<!-- print object is new and active -->
</div>
我今天遇到了同样的问题,我的 th:switch
中使用的对象是 Java 枚举。我最终发现这是 Java equals() 与 == 的问题。在 th:switch
中我有一个枚举对象,但在我的 th:case
中我有一个字符串对象。我通过使用 Thymeleaf 字符串函数将枚举对象转换为字符串来解决它,然后一切正常。
<div th:switch="${#strings.toString(datafile.status)}">
<td th:case="'SUCCESS'" class="table-success">SUCCESS</td>
<td th:case="'FAILED'" class="table-danger">FAILED</td>
<!-- default case -->
<td th:case="*" th:text="${#strings.toString(datafile.status)}" class="table-secondary">xxx</td>
</div>
在上面的示例中,我使用开关有条件地将 Bootstrap 样式应用于 table 单元格。
另一种解决方案是在 Java 代码中执行逻辑并将输出值公开为对象 属性,然后仅在 Thymeleaf 模板中引用该 属性。像这样:
public String getBootstrapTableRowClassForStatus() {
Objects.requireNonNull(status);
switch (status) {
case SUCCESS:
return "table-success";
case FAILED:
return "table-danger";
case PROCESSING:
return "table-info";
default:
return "table-secondary";
}
}
然后我使用 Thymeleaf th:class
:
<tr th:class="${datafile.bootstrapTableRowClassForStatus}">
在我的页面上,这将根据 Java 对象中状态枚举的值将 Bootstrap 颜色样式应用于我的 table 行。
pens-fan-69 回答了这种类型的切换
switch(status.value){
case 'COMPLETE':
case 'INVALID':
break;
case 'NEW':
break;
}
只能在 Thymeleaf 中翻译成以下 switch
语句(如果你想保留 switch-case
语法)并且不能用 if-else
<th:block th:switch="${status.value}">
<div th:case="'COMPLETE'">
<!-- print object is not active -->
</div>
<div th:case="'INVALID'">
<!-- print object is not active -->
</div>
<div th:case="'NEW'">
<!-- print object is new and active -->
</div>
</th:block>
我遇到了一个问题,在这种情况下我不得不复制很多 HTML 代码(在本例中是 COMPLETE
和 INVALID
)。这可以通过使用 th:fragment
并像这样重用它们来缓解:
<th:block th:fragment="complete-or-invalid-case">
<!-- your HTML for complete or invalid case -->
</th:block>
<th:block th:fragment="new-case">
<!-- your HTML for new case -->
</th:block>
然后在 switch
中您可以重用这些块,从而减少代码的重复性
<th:block th:switch="${status.value}">
<div th:case="'COMPLETE'" th:include="this :: complete-or-invalid-case"></div>
<div th:case="'INVALID'" th:include="this :: complete-or-invalid-case"></div>
<div th:case="'NEW'" th:include="this :: new-case"></div>
</th:block>