gpt4 book ai didi

java - 将另一个 JSTL 标记的结果分配为一个 JSTL 标记的值

转载 作者:搜寻专家 更新时间:2023-10-30 19:49:26 26 4
gpt4 key购买 nike

我有这个,它正在工作:

<c:choose>
<c:when test="${sometest}">
Hello, world!
</c:when>
<c:otherwise>
<fmt:message key="${page.title}" />
</c:otherwise>
</c:choose>

我想把它改成这样:

<c:choose>
<c:when test="${sometest}">
<c:set var="somevar" scope="page" value="Hello, world!"/>
</c:when>
<c:otherwise>
<c:set var="somevar" scope="page" value="<fmt:message key="${page.title}">"
</c:otherwise>
</c:choose

当然下面这行是不正确的:

<c:set var="somevar" scope="page" value="<fmt:message key="${page.title}">"

如何将调用 fmt:message 产生的字符串分配给 somevar 变量?

最佳答案

fmt:message还有一个 var 属性,它可以有效地满足您的需求。

 <fmt:message key="${page.title}" var="somevar" />

就是这样。 Collection JSTL tlddoc , 它可能会派上用场。

关于java - 将另一个 JSTL 标记的结果分配为一个 JSTL 标记的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2945223/

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