博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jstl遍历list的jsp
阅读量:5872 次
发布时间:2019-06-19

本文共 539 字,大约阅读时间需要 1 分钟。

jstl,核心标签库,使用,<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>@taglib 指令 导入,prefix="c"    使用前置标签名

<c:forEach var="Article" items="${articleSet}">     <c:forEach items="" var=""> 可以遍历集合 数组等 用于页面输出

  forEach  循环遍历,  var="Article"  变量属性

迭代那个request作用域里面的list,并且每次取到的数据存放到val变量中

                <tr>
                    <td>${Article.arid}</td> 获取属性值
                    <td>${Article.artitle}</td>
                    <td><a href="${pageContext.request.contextPath}/ArticleUpdate.do?arid=${Article.arid}">编辑</a></td>
                    <td><a href="">删除</a></td>
                </tr>
            </c:forEach>

转载于:https://www.cnblogs.com/TangGe520/p/8873448.html

你可能感兴趣的文章
javaMail
查看>>
UITableView的重用
查看>>
swift属性观察者机智
查看>>
在ASP.NET中面向对象的编程思想
查看>>
【网摘】 浅谈HTTP中GET与POST的区别
查看>>
What we find changes who we become.
查看>>
从 A/Looper: Could not create epoll instance. errno=24 错误浅谈解决各种 bug 的思路
查看>>
表单+文件上传+音频+iframe
查看>>
页码显示工具包
查看>>
【Machine Learning】监督学习、非监督学习及强化学习对比
查看>>
CRT工具远程登陆Google Cloud远程ssh登录方法
查看>>
C指针(一)
查看>>
应用程序范围的键值对
查看>>
小型考试系统
查看>>
匿名函数的简单理解和应用
查看>>
C - Catch That Cow
查看>>
SSH抛出org.apache.ibatis.exceptions.PersistenceException: 异常
查看>>
win7下安装linux(centos6.5)双系统详细小白教程
查看>>
.net core在Linux下获取AD域信息
查看>>
多线程技术点
查看>>