当前位置: 代码迷 >> Java Web开发 >> freemarker 多个list嵌套运用
  详细解决方案

freemarker 多个list嵌套运用

热度:3965   发布时间:2013-02-25 21:05:01.0
freemarker 多个list嵌套使用
本帖最后由 asp_c 于 2010-08-02 18:43:25 编辑
红色字体无法运行
<#if ScheduleAdherenceList??>  //jsp传过来的list 1
    <#list ScheduleAdherenceList as bean>
          <tr>
              <td class="${getTdClass(bean_index)}" align="center">${bean.ProductName}&nbsp;</td>
               <#if titlesize??>////jsp传过来的list 2
                     <#list titlesize as bean1>
                          <td class="${getTdClass(bean1_index)}" align="center">${bean.${bean1_index+1}}</td>//用于取第一个list中bean的值,但是这个参数是来自第二个List的bean中
                      </#list>
               </#if>
           </tr>
     </#list>
</#if>
感觉嵌套的太多了吧
  相关解决方案