在index/index.jsp頁面中包含/index/header.jsp頁面
value="https://bbs.csdn.net/topics/${typeList}"是從controller控制器獲取的資料集合
<jsp:include page="/index/header.jsp" >
<jsp:param name="typeList" value="https://bbs.csdn.net/topics/${typeList}"/>
</jsp:include>
在包含檔案中遍歷集合
<c:forEach var="type" items="typeList">
<li><a class="list" href="https://bbs.csdn.net/topics/goods?typeid=${type.id}">${type.name}</a></li>
</c:forEach>
控制臺顯示<jsp:include .....>這部分代碼錯誤
這是哪里出問題了呢
轉載請註明出處,本文鏈接:https://www.uj5u.com/houduan/283380.html
標籤:Web 開發