如何在Struts1.1中使用<logic:iterate>为List <string>显示html:text </string> </logic:iterate>

时间:2015-02-24 07:52:39

标签: java jsp struts jsp-tags struts-1

我的List<String>中有ActionForm,必须使用Struts1.1

在JSP页面中将其表示为文本字段
 List<String> url=new ArrayList<String>();
 public List<String> getUrl() {
        return url;
    }
    public void setUrl(List<String> url) {
        this.url = url;
    }

以下是我在JSP页面中使用的代码

 <logic:iterate id="urlIterate" name="pForm" property="url">
    <html:text property="?????" name="urlIterate"/>
    </logic:iterate>

<html:text>适用于List<SomeClass>,因为属性可以指向特定变量,而List<SomeClass>可以充当bean。

 <logic:iterate id="listUserId" property="listUsers" name="pForm">
 <html:text name="listUserId" property="username"/>
 </logic:iterate>

其中listUsers是具有List类型的User 私人清单列表用户;  在property="username" username中是User

中的变量

List<String>

<bean:write name="urlIterate" />

我找不到使用<bean:write>显示为文本的问题,因为它只有name属性。 但要使用<html:text>,我们需要添加另一个强制属性property

任何人都可以帮助我。为了使property='?????'正常工作,html:text使用了什么值。

提前致谢

提供更多代码.. UI的JSP页面。

<%@taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic"%>

<html>
<head>
</head>
<body>
<html:form action="/plist">
<h1>Struts &lt;logic:iterate&gt; example</h1>

  <logic:iterate property="listMsg" name="pForm"  id="listMsgId">
    <p>
    List Messages </p> <html:text property="listMsgId" indexed="true"/> 

</logic:iterate>

 <html:submit/>

  </html:form>
</body>
</html>

行动类:

public class PrintMsgAction extends Action {


    public ActionForward execute(ActionMapping mapping,ActionForm form,
        HttpServletRequest request,HttpServletResponse response) 
                throws Exception {

        List<OptionsListCollection> listoptions=new ArrayList<OptionsListCollection>();

                for(int i=0;i<10;i++){
                    listoptions.add(new OptionsListCollection("Option"+i, "OptionValue"+i));    
                }

                List<String> listMsg = new ArrayList<String>();

                listMsg.add("Message A");
                listMsg.add("Message B");
                listMsg.add("Message C");
                listMsg.add("Message D");

                            PrintForm pForm=(PrintForm)form;
                pForm.setListMsg(listMsg);



                return mapping.findForward("plist");
            }
}

和ActionForm

public class PrintForm extends ActionForm{

    private List<String> listMsg;

    public List<String> getListMsg() {
        return listMsg;
    }
    public void setListMsg(List<String> listMsg) {
        this.listMsg = new ArrayList<String>();

        this.listMsg = listMsg;

    }
}

1 个答案:

答案 0 :(得分:0)

检查struts-logic-iterate-example。您的代码应为 -

 <logic:iterate id="urlIterate" name="pForm" >
    <html:text property="urlIterate" indexed="true"/>
 </logic:iterate>