上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 34 下一页
摘要: 1.增加状态码信息 ResStatus: public class ResStatus { public static final int OK=10000; public static final int NO=10001; public static final int LOGIN_SUCCES 阅读全文
posted @ 2022-07-23 12:27 临易 阅读(136) 评论(0) 推荐(0)
摘要: 一、流程分析 二、接口实现(实现添加购物车记录接口) 1.修改购物车数据表结构 2.数据表修改完成之后,对此表重新进行逆向工程。 3.数据库实现 单表添加操作可以直接使用tkMapper完成。 三、业务层实现 ShoppingCartService : public interface Shoppi 阅读全文
posted @ 2022-07-22 14:57 临易 阅读(86) 评论(0) 推荐(0)
摘要: 评价统计接口实现: 1.数据库实现 统计当前商品的总记录数 统计当前商品的好评、中评、差评 2.业务层实现 ProductCommentsService : public interface ProductCommentsService { //根据商品id实现评论的分页查询 //productId 阅读全文
posted @ 2022-07-22 13:40 临易 阅读(143) 评论(0) 推荐(0)
摘要: 一、流程分析 二、接口开发:改造商品评论列表接口(分页查询) 1.定义PageHelper: @Data @NoArgsConstructor @AllArgsConstructor public class PageHelper<T> { //总记录数 private int count; //总 阅读全文
posted @ 2022-07-21 22:12 临易 阅读(88) 评论(0) 推荐(0)
摘要: 一、业务层实现 1.创建接口定义方法: productCommentsService : public interface productCommentsService { public ResultVO listCommentsByProductId(String productId); } 2. 阅读全文
posted @ 2022-07-21 20:08 临易 阅读(54) 评论(0) 推荐(0)
摘要: 一、数据库实现 1.数据表分析及数据准备 2.SQL(关联用户和评论信息) #查询商品的评价信息,关联查询评价用户的信息 SELECT c.*,u.nickname,u.user_img,u.username FROM product_comments c INNER JOIN users u ON 阅读全文
posted @ 2022-07-21 19:50 临易 阅读(104) 评论(0) 推荐(0)
摘要: 根据商品id查询商品参数信息。 数据库操作直接使用tkMapper的默认方法实现。 业务层实现: ProductService : public interface ProductService { public ResultVO listRecommendProducts(); public Re 阅读全文
posted @ 2022-07-21 11:56 临易 阅读(103) 评论(0) 推荐(0)
摘要: 情景: 原代码: <div class="cart-title">口味</div> <ul> <li class="sku-line selected">原味<i></i></li> <li class="sku-line">奶油<i></i></li> <li class="sku-line">炭 阅读全文
posted @ 2022-07-20 20:25 临易 阅读(237) 评论(0) 推荐(0)
摘要: 1.a.html: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <a href="b.html?pid=101">跳转到b页面</a> </body> </html> b.ht 阅读全文
posted @ 2022-07-20 17:07 临易 阅读(58) 评论(0) 推荐(0)
摘要: 点击首页推荐的商品、轮播图商品广告、商品列表页面点击商品,就会进入到商品的详情页面。 一、流程分析 点击推荐商品 ———商品ID———> 商品详情 ————商品ID————> 商品详情 <———商品详情———— 接口 轮播图广告 ————商品ID———> ————商品ID————> 商品详情 <—— 阅读全文
posted @ 2022-07-20 16:38 临易 阅读(123) 评论(0) 推荐(0)
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 34 下一页