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ösen
按钮值文字未在UI中编码,按钮的预期值应为Einlösen
由于
答案 0 :(得分: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>
答案 1 :(得分: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}'/>" />