米兰@de小铁匠 2021-09-09 12:06 采纳率: 100%
浏览 123
已结题

jstl 的 c:forEach 无法读取出 Model中的 PageInfo 数据

问题描述

后端返回封装好的分页数据 PageInfo 对象
PageInfo对象中的 list 属性也有数据,调试时有数据,输出到控制台也有数据
使用Model对象将其封装
在jsp页面使用jstl 的 c:forEach 标签遍历不出数据

controller 层分页代码

断点调试

img

调试信息

img

JSP 页面遍历代码

<%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
<head>
    <title>Book List</title>
</head>
<body>
    <div>
        <a href="${pageContext.request.contextPath}/book/toAdd">添加图书</a>
    </div>
    <table id="tb" border="1" cellpadding="0" style="border-collapse: collapse">
        <caption>图书列表</caption>
        <thead>
            <tr>
                <th>编号</th>
                <th>名称</th>
                <th>作者</th>
                <th>分类</th>
                <th>品牌</th>
                <th>出版社</th>
                <th>出版日期</th>
                <th>ISBN</th>
                <th>库存数量</th>
                <th>描述</th>
                <th>封面</th>
                <th>价格</th>
                <th>评分</th>
            </tr>
        </thead>
        <tbody>
        <c:forEach items="${pageInfo.list}" var="book">
            <tr>
                <td>${book.id}</td>
                <td>${book.name}</td>
                <td>${book.author}</td>
                <td>${book.classifyId}</td>
                <td>${book.brandId}</td>
                <td>${book.publisher}</td>
                <td>${book.publicationDate}</td>
                <td>${book.ISBN}</td>
                <td>${book.stockQuantity}</td>
                <td>${book.description}</td>
                <td>${book.cover}</td>
                <td>${book.price}</td>
                <td>${book.score}</td>
            </tr>
        </c:forEach>
        </tbody>
    </table>
</body>
</html>

遍历结果为空。
但未做其他改变的情况下,将 model 中封装的响应数据 直接换成 list 集合 jsp中就能成功遍历出来
后端:

img

jsp

img

请各位朋友帮忙瞅瞅咋回事,摸索了一早上了,谢谢。

  • 写回答

1条回答 默认 最新

  • CSDN专家-sinJack 2021-09-09 12:16
    关注

    PageInfo对象里面的list有提供get方法吗

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 9月17日
  • 已采纳回答 9月9日
  • 创建了问题 9月9日

悬赏问题

  • ¥15 如何构建全国统一的物流管理平台?
  • ¥100 ijkplayer使用AndroidStudio/CMake编译,如何支持 rtsp 直播流?
  • ¥20 和学习数据的传参方式,选择正确的传参方式有关
  • ¥15 这是网络安全里面的poem code
  • ¥15 用js遍历数据并对非空元素添加css样式
  • ¥15 使用autodl云训练,希望有直接运行的代码(关键词-数据集)
  • ¥50 python写segy数据出错
  • ¥20 关于线性结构的问题:希望能从头到尾完整地帮我改一下,困扰我很久了
  • ¥30 3D多模态医疗数据集-视觉问答
  • ¥20 设计一个二极管稳压值检测电路