1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| Controller. model.addAttribute("goodsList", goodsVos); model.addAttribute("user", miaoshaUser); return "goods_list";
"goods_list".html
<tr th:each="goods,goodsStat : ${goodsList}"> <td th:text="${goods.goodsName}"></td> <td><img th:src="@{${goods.goodsImg}}" width="100" height="100"/></td> <td th:text="${goods.goodsPrice}"></td> <td th:text="${goods.miaoshaPrice}"></td> <td th:text="${goods.stockCount}"></td> <td><a th:href="'/goods_detail.htm?goodsId='+${goods.id}">详情</a></td> </tr> </table>
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| <div class="panel panel-default" style="height:100%;background-color:rgba(222,222,222,0.8)"> <div class="panel-heading">秒杀商品列表</div> <table class="table" id="goodslist"> <tr> <td>商品名称</td> <td>商品图片</td> <td>商品原价</td> <td>秒杀价</td> <td>库存数量</td> <td>详情</td> </tr> <tr th:each="goods,goodsStat : ${goodsList}"> <td th:text="${goods.goodsName}"></td> <td><img th:src="@{${goods.goodsImg}}" width="100" height="100"/></td> <td th:text="${goods.goodsPrice}"></td> <td th:text="${goods.miaoshaPrice}"></td> <td th:text="${goods.stockCount}"></td> <td><a th:href="'/goods_detail.htm?goodsId='+${goods.id}">详情</a></td> </tr> </table> </div>
|
Author:
John Doe
Permalink:
http://yoursite.com/2019/08/09/模版技术/Thymeleaf/
License:
Copyright (c) 2019 CC-BY-NC-4.0 LICENSE
Slogan:
Do you believe in DESTINY?