gpt4 book ai didi

java - 访问动态资源消息

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:32:57 24 4
gpt4 key购买 nike

在我的 Jsp 中,我有用于

的单选按钮
typeA

typeB

typeC

typeD

我使用了以下标签:

<c:forEach var="abcTyp" items="${abcTypeList}">
<form:radiobutton path="abcType" value="<spring:message code="label.admin.lot.${abcType.value}" />" label="${abcTyp.value}" onclick="actSingStone();"/>
</c:forEach>

但我不想使用“abcTyp.value”作为标签,而是想使用国际化的消息形式资源包。

我试过用

<form:radiobuttons path="abcType" value="${abcTypeList}" label="<spring:message code="label.admin.pep.${abcTyp.value}"/>." onclick="actSingStone();"/>

在我的资源文件中我已经提到了

label.admin.pep.typeA = some text
label.admin.pep.typeB = some text
label.admin.pep.typeC = some text
label.admin.pep.typeD = some text

但它给出了一个错误“期望等号”

谁能给我同样的解决方案....??

最佳答案

尝试将标签设置为变量并使用它,如下所示

<c:forEach var="abcTyp" items="${abcTypeList}">
<c:set var="labelVar">
<spring:message code="label.admin.lot.${abcType.value}" />
</c:set>
<form:radiobutton path="abcType" label="${labelVar}" value="${abcTyp.value}" onclick="actSingStone();"/>
</c:forEach>

关于java - 访问动态资源消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11792734/

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