Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我很困惑。这应该很明显,但我无法弄清楚:(
如何在我的 .jsp 页面中将 Action Form 属性显示为简单文本(标签)?
例如,我可以使用<html:text>标签为所需属性创建一个输入文本字段,但是如何使用 Struts 1.x 简单地将这个值显示为纯文本?
<html:text>
<c:out value="${theActionForm.label}" />使用 JSTL,或者,如果您真的喜欢 Struts 标签,<bean:write name="theActionForm" property="label" />.
<c:out value="${theActionForm.label}" />
<bean:write name="theActionForm" property="label" />
这假定动作表单在属性名称“theActionForm”下注册,并且有一个getLabel()方法。
getLabel()