今天遇到的struts的问题

      Java 2004-6-11 15:28
今天发现struts中可以在页面上直接比较ActionForm中的property,但是试了很多次还是不行,尤其是在nested中使用时,总是不对。最后终于还是试出来了,以后用的时候一定也要记住才行。
方法例:
1.不在nested中时,
<logic:notEmpty name="StockInputForm" property="beginDate" scope="request">
  <nested:write property="beginDate"/>
</logic:notEmpty>
2.在nested中时,
<nested:iterate id="item" property="items" indexId="index">
    <nested:write name="item" property="partNo"/> 
    <nested:notEmpty name="item" property="invTtl">
        <nested:text name="item" property="storageTtl" styleClass="textinput" size="19" maxlength="19" indexed="true"/>
    </nested:notEmpty>
    <nested:empty name="item" property="invTtl">
        <nested:hidden name="item" property="storageTtl" indexed="true"/>
    </nested:empty>
</nested:iterate>

网上有关Struts的文章太少了,好多使用方法都没办法查到,以后只有边使用,边自己总结了。
标签集:TAGS:
回复Comments() 点击Count()

回复Comments

{commentauthor}
{commentauthor}
{commenttime}
{commentnum}
{commentcontent}
作者:
{commentrecontent}
}