1

PFB JSP代码,

<fmt:message var="applyText" key="checkout.order.summary.coupon.apply" />
<dsp:input iclass="btn green rev validatePromoCode" id="atg_store_applyCoupon" bean="CouponFormHandler.claimCoupon" type="submit" value="${applyText}" />

提交按钮值来自属性文件,PFB,

checkout.order.summary.coupon.apply = Einl&ouml;sen

按钮值文本未在 UI 中编码,按钮的预期值应为Einlösen

在此处输入图像描述

谢谢

4

2 回答 2

1

使用 dsp:tagAttribute:

<fmt:message var="applyText" key="checkout.order.summary.coupon.apply" />
<dsp:input iclass="btn green rev validatePromoCode" id="atg_store_applyCoupon" bean="CouponFormHandler.claimCoupon" type="submit">
    <dsp:tagAttribute name="value" value="${applyText}"/>
</dsp:input>
于 2016-06-10T04:37:10.513 回答
0

我过去遇到过类似的问题。相信我通过将<c:out />标签嵌套在以下内容中来解决这个问题的方法<dsp:input />

<fmt:message var="applyText" key="checkout.order.summary.coupon.apply" />
<dsp:input iclass="btn green rev validatePromoCode" id="atg_store_applyCoupon" bean="CouponFormHandler.claimCoupon" type="submit" value="<c:out value='${applyText}'/>" />
于 2016-06-10T17:48:42.610 回答