我在 jsp 中创建了一个名为的新标签RequiredLabel
,但我无法将标签属性传递给 struts 标签(css 基于 YAML)
该标签将用作:
<myTag:RequiredLabel name="amount"/>
标签应该从 struts 获取,因为它必须本地化。
<%@tag description="Renders a label with required css and error label" pageEncoding="UTF-8"%>
<%@attribute name="name" required="true" %>
<%@taglib prefix="s" uri="/struts-tags"%>
<!--Here ${name} works fine -->
<p class="ym-message" id="${name}Error" />
<!-- Here I can not pass the name to s:label tag -->
<s:label key="form.label.%{name}" cssClass="ym-required" />
我试过了#attr.name
,#param.name
但没有一个奏效!
你知道有什么解决办法吗?!