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 ページでアクション フォーム プロパティを単純なテキスト (ラベル) として表示するにはどうすればよいですか?
<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()