報錯:2020-07-22 23:24:19.447 ERROR 7296 --- [nio-8080-exec-8] org.thymeleaf.TemplateEngine : THYMELEAF Exception processing template "front/cart": Exception evaluating SpringEL expression: "item.num" (template: "front/cart" - line 101, col 44)
org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "item.num" (template: "front/cart" - line 101, col 44)
<table class="table table-hover table-striped table-bordered">
<tr>
<th>
<input type="checkbox" id="all">全選</th>
<th>序號</th>
<th>商品名稱</th>
<th>商品圖片</th>
<th>商品數量</th>
<th>商品總價</th>
<th>操作</th>
</tr>
<tr th:each="item,i:${session.cart}">
<td>
<input type="checkbox">
</td>
<td>[[${i.index+1}]]</td>
<td></td>
<td> <img th:src="https://bbs.csdn.net/topics/${item.value.product.image}" alt="" width="60" height="60"></td>
<td>
<input type="text" th:value="https://bbs.csdn.net/topics/${item.num}" size="5">
</td>
<td>[[${item.value.price}]]</td>
<td>
<button class="btn btn-success" type="button"> <span class="glyphicon glyphicon-edit" aria-hidden="true"></span>修改</button>
<button class="btn btn-danger" type="button" onclick="javaScript:return confirm('是否確認洗掉');">
<span class="glyphicon glyphicon-remove" aria-hidden="true"></span>洗掉
</button>
</td>
</tr>
<tr>
<td colspan="7" align="right">
<button class="btn btn-warning margin-right-15" type="button" > 洗掉選中項</button>
<button class="btn btn-warning margin-right-15" type="button" > 清空購物車</button>
<button class="btn btn-warning margin-right-15" type="button" > 繼續購物</button>
<a href="https://bbs.csdn.net/topics/order.html"><button class="btn btn-warning " type="button" > 結算</button></a>
</td>
</tr>
<tr>
<td colspan="7" align="right" class="foot-msg">
總計: <b><span>1000</span> </b>元
</td>
</tr>
</table>
cart是放在session作用域的Map集合,在Thymeleaf取值時應該時item.value.num
轉載請註明出處,本文鏈接:https://www.uj5u.com/houduan/32646.html
標籤:Java相關
上一篇:Caused by: java.lang.ClassNotFoundException: org.apache.http.conn.HttpClientConn
