关于jstl动态变量用法

没有时间整理,等这个项目忙完在整理

关键字:
项目 商贸统计
后台:
userInfo.getMap().put(String.valueOf(reportType.getReport_code()), msg0);

页面:
<c:forEach var="cur" items="${userInfoList}" varStatus="vs">
            <tr align="center">
              <td align="left" nowrap="nowrap"><c:out value="${cur.user_name}" /></td>
              <c:forEach var="cur1" items="${reportTypeList}">
                <td align="center">${cur.map[fn:trim(cur1.report_code)]}</td>
              </c:forEach>
            </tr>
  </c:forEach>


${cur.map[fn:trim(cur1.report_code)]}
发表于 @ 2009年01月09日 11:06:00

你可能感兴趣的:(jstl)