如何在jsp页面中创建一个从数组中检索字符串值的 ?

时间:2021-05-21 21:19:27

I am developing a web app inside Eclipse, using struts2. I have an action class that creates an array full of string.

我正在使用struts2在Eclipse中开发一个web应用程序。我有一个action类,它创建了一个充满字符串的数组。

How can I realize a <li> inside the jsp I call retrieving string values from my array?

如何在jsp中实现从数组中检索字符串值的

  • ?

  • 吗?
  • 1 个解决方案

    #1


    0  

    Use the iterator struts tag. Example :

    使用iterator struts标记。例子:

    <ul>
            <s:iteratorvalue="somevalue">
                <li>
                    <s:property/>
                </li>
                <li>
                <s:propertyvalue="somevalue"/>
                </li>
            </s:iterator>
        </ul>
    

    #1


    0  

    Use the iterator struts tag. Example :

    使用iterator struts标记。例子:

    <ul>
            <s:iteratorvalue="somevalue">
                <li>
                    <s:property/>
                </li>
                <li>
                <s:propertyvalue="somevalue"/>
                </li>
            </s:iterator>
        </ul>