org.apache.jasper.el.JspPropertyNotFoundException: /WEB-INF/pages/manage/audit/courseware_list.jsp(60,20) '${page.coursewareList}' Property [coursewareList] not found on type [com.github.pagehelper.PageInfo]

 

JSP页面中,EL 表达式报错: Property [coursewareList] not found on type [com.github.pagehelper.PageInfo]

 

 


JSP页面中,EL 表达式报错: Property [coursewareList] not found on type [com.github.pagehelper.PageInfo]

 

当出现这个问题时,前台一定是 

<c:forEach var="t" items="${page.list}">
</c:forEach> 的问题

pagehelper中 pageInfo 类中,只有list这个属性,所以你的前台 遍历集合,只能写list,不能写其他的(不能写后台自己起的集合名字)

相关文章:

  • 2021-12-16
  • 2021-08-22
  • 2021-09-18
  • 2021-06-26
  • 2021-12-22
  • 2021-06-26
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-03-08
  • 2022-12-23
  • 2021-12-12
  • 2021-06-20
  • 2021-12-09
  • 2021-09-24
相关资源
相似解决方案