Thymeleaf - 如何处理空值并根据条件分配不同的值?

发布于 2025-01-13 19:03:37 字数 853 浏览 0 评论 0原文

就我而言,条件是如果 question.objQuestion.questionContent 为 null,则显示 question.sbjQuestion.questionContent。我的尝试如下所示。但这不起作用。

<td th:switch = "${question.objQuestion.questionContent}"> 
    <span th:case="${question.objQuestion.questionContent == null}" th:text = "${question.objQuestion.questionContent}"></span>
    <span th:case="${question.objQuestion.questionContent != null}" th:text ="${question.sbjQuestion.questionContent}"></span>
</td>

输入图片此处描述obj_question_idsbj_question_id 是foregin id

In my case, the condition is if the question.objQuestion.questionContent is null, show the question.sbjQuestion.questionContent. My attempt is shown at below. But it doesn't work.

<td th:switch = "${question.objQuestion.questionContent}"> 
    <span th:case="${question.objQuestion.questionContent == null}" th:text = "${question.objQuestion.questionContent}"></span>
    <span th:case="${question.objQuestion.questionContent != null}" th:text ="${question.sbjQuestion.questionContent}"></span>
</td>

enter image description here
obj_question_id and sbj_question_id are foregin id

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

眼趣 2025-01-20 19:03:37

如果您使用th:switchth:case 属性应该只包含要测试的值。在你的情况下,它应该看起来像这样:

<td th:switch="${question.objQuestion.questionContent}"> 
    <span th:case="null" th:text="${question.sbjQuestion.questionContent}"></span>
    <span th:case="*" th:text ="${question.objQuestion.questionContent}"></span>
</td>

你可以简化这个并只使用 Elvis 操作员

<td> 
    <span th:text="${question.objQuestion.questionContent} ?: ${question.sbjQuestion.questionContent}"></span>
</td>

If you're using a th:switch, the th:case attributes should only contain the value to test. In your case, it should look like this:

<td th:switch="${question.objQuestion.questionContent}"> 
    <span th:case="null" th:text="${question.sbjQuestion.questionContent}"></span>
    <span th:case="*" th:text ="${question.objQuestion.questionContent}"></span>
</td>

You could probably simplify this and just use the Elvis operator:

<td> 
    <span th:text="${question.objQuestion.questionContent} ?: ${question.sbjQuestion.questionContent}"></span>
</td>
∞觅青森が 2025-01-20 19:03:37

当我以这种方式使用 Elvis Operator ? 时,它会起作用

解决方案附在下面:

<td>
   <span th:text = "${question.objQuestion?.questionContent}"></span>
   <span th:text = "${question.sbjQuestion?.questionContent}"></span>
</td>

It works when I use the Elvis Operator ? in this way

The solution is attached at below:

<td>
   <span th:text = "${question.objQuestion?.questionContent}"></span>
   <span th:text = "${question.sbjQuestion?.questionContent}"></span>
</td>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文