Redis实战之商城购物车功能的实现代码

目标

利用Redis实现商城购物车功能。

功能

根据用户编号查询购物车列表,且各个商品需要跟在对应的店铺下;统计购物车中的商品总数;新增或删减购物车商品;增加或减少购物车中的商品数量。


分析

Hash数据类型:值为多组映射,相当于JAVA中的Map。适合存储对象数据类型。因为用户ID作为唯一的身份标识,所以可以把模块名称+用户ID作为Redis的键;商品ID作为商品的唯一标识,可以把店铺编号+商品ID作为Hash元素的键,商品数量为元素的值。


代码实现

控制层

package com.shoppingcart.controller;

import com.shoppingcart.service.ShoppingCartServer;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import java.util.List;
import java.util.Map;

/**
 * redis实现购物车功能
 */
@RestController
@RequestMapping("/shoppingCart")
public class ShoppingCartController {
 @Resource
 private ShoppingCartServer shoppingCartServer;

 /**
  * http://localhost:8099/shoppingCart/addCommodity?userId=001&shopId=1234560&commodityId=001&commodityNum=336
  * 添加商品
  * @return
  * @param: userId 用户ID
  * @param: [{shopId:商铺id,commodityId:商品id,commodityNum:商品数量},{shopId:商铺id,commodityId:商品id,commodityNum:商品数量}]
  * 测试数据:
  [
  {
  "shopId": 123,
  "commodityId": 145350,
  "commodityNum": 155.88
  },
  {
  "shopId": 123,
  "commodityId": 6754434,
  "commodityNum": 945.09
  },
  {
  "shopId": 123,
  "commodityId": 7452,
  "commodityNum": 2445.09
  },
  {
  "shopId": 3210,
  "commodityId": 98766,
  "commodityNum": 2345.09
  },
  {
  "shopId": 456,
  "commodityId": 2435640,
  "commodityNum": 11945.09
  }
  ]
  */
 @GetMapping("/addCommodity")
 public Map<String, Object> addCommodity(
   @RequestParam(value = "userId", required = true) String userId,
   @RequestBody List<Map<String, Object>> list
 ) {
  Map<String, Object> map = shoppingCartServer.addCommodity(userId, list);
  return map;
 }

 /**
  * 购物车列表
  * http://localhost:8099/shoppingCart/shoppingCartList?userId=001
  *
  * @param userId
  * @return 返回{店铺ID:商品ID=商品数量}的map。
  */
 @GetMapping("/shoppingCartList")
 public Map<Object, Object> shoppingCartList(
   @RequestParam(value = "userId", required = true) String userId,
   @RequestParam(value = "pageNo", defaultValue = "0") Long pageNo,
   @RequestParam(value = "pageSize", defaultValue = "10") Long pageSize
 ) {
  Map<Object, Object> map = shoppingCartServer.shoppingCartList(userId, pageNo, pageSize);
  return map;
 }

 /**
  * http://localhost:8099/shoppingCart/updateNum?userId=001&shopId=01&comId=123456&num=342
  * 修改商品数量。
  *
  * @param userId  用户id
  * @param commodityId 商品id
  * @param commodityNum 商品数量
  * @return
  */
 @GetMapping("/updateNum")
 public Map<String, Object> updateNum(
   @RequestParam(value = "userId", required = true) String userId,
   @RequestParam(value = "shopId", required = true) Long shopId,
   @RequestParam(value = "commodityId", required = true) Long commodityId,
   @RequestParam(value = "commodityNum", required = true) Double commodityNum
 ) {
  return shoppingCartServer.updateNum(userId, shopId, commodityId, commodityNum);
 }

 /**
  * http://localhost:8099/shoppingCart/delCom?userId=001&shopId=01&comId=123457
  * 删除购物车中的商品
  * @return
  * @param: userId 用户id
  * @param: [{shopId:商铺id,commodityId:商品id},{shopId:商铺id,commodityId:商品id}]
  */
 @PostMapping("/delCommodity")
 public Map<String, Object> delCommodity(
   @RequestParam(value = "userId", required = true) String userId,
   @RequestBody List<Map<String, Object>> list
 ) {
  return shoppingCartServer.delCommodity(userId, list);
 }
}

业务层

package com.shoppingcart.service;

import java.util.List;
import java.util.Map;

public interface ShoppingCartServer {
 //购物车列表
 public Map<Object, Object> shoppingCartList(String userId,Long pageNo,Long pageSize);
 Map<String,Object> updateNum(String userId,Long shopId, Long commodityId, Double commodityNum);
 Map<String, Object> delCommodity(String userId, List<Map<String , Object>> list);
 Map<String, Object> addCommodity(String userId, List<Map<String , Object>> list);
}
package com.shoppingcart.service.impl;

import com.shoppingcart.service.ShoppingCartServer;
import com.shoppingcart.utils.RedisService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

@Service
public class ShoppingCartServerImpl implements ShoppingCartServer {
 @Autowired
 private RedisService redisService;
 //购物车键名前缀
 public static final String SHOPPING_CART = "shoppingCart:";
 //购物车的元素键名前缀
 public static final String SHOP_ID = "shopId";

 //添加商品
 @Override
 public Map<String, Object> addCommodity(String userId, List<Map<String, Object>> list) {
  //记录:list中有哪些商品在购物车中已经存在。
  List<String> existCommoditys = new ArrayList<>();
  //todo 购物车key
  String key = SHOPPING_CART + userId;
  for (int i = 0; i < list.size(); i++) {
   String commodityKey = SHOP_ID + list.get(i).get("shopId") + ":" + list.get(i).get("commodityId");
   //todo 添加商品
   boolean boo = redisService.hsetnx(key, commodityKey, Double.parseDouble(list.get(i).get("commodityNum") + ""));
   if (!boo) {
    existCommoditys.add(commodityKey);
   }
  }
  Map<String, Object> m = new HashMap<String, Object>() {
   {
    put("existCommoditys", existCommoditys);
    put("existCommoditysMsg", "这些商品在购物车中已经存在,重复数量:"+existCommoditys.size()+"。");
   }
  };
  Map<String, Object> map = new HashMap<String, Object>();
  map.put("data", m);
  map.put("code", 0);
  return map;
 }

 //购物车列表
 @Override
 public Map<Object, Object> shoppingCartList(String userId, Long pageNo, Long pageSize) {
  //返回{店铺ID:商品ID=商品数量}的map。
  Map<Object, Object> map = redisService.hmget(SHOPPING_CART + userId);
  return map;
 }

 //修改商品数量
 @Override
 public Map<String, Object> updateNum(String userId, Long shopId, Long commodityId, Double commodityNum) {
  Map<String, Object> map = new HashMap<String, Object>();
  //todo 购物车key
  String key = SHOPPING_CART + userId;
  //todo 商品key
  String commodityKey = SHOP_ID + shopId + ":" + commodityId;
  //修改购物车的数量
  boolean boo = redisService.hset(key, commodityKey, commodityNum);
  Map<String, Object> m = new HashMap<String, Object>() {
   {
    put("key", key);
    put("commodityKey", commodityKey);
    put("commodityNum", commodityNum);
   }
  };
  map.put("data", m);
  map.put("msg", boo == true ? "修改购物车商品数量成功。" : "修改购物车商品数量失败。");
  map.put("code", boo == true ? 0 : 1);
  return map;
 }

 //删除商品
 @Override
 public Map<String, Object> delCommodity(String userId, List<Map<String, Object>> list) {
  Map<String, Object> map = new HashMap<String, Object>();
  String[] commodityIds = new String[list.size()];
  for (int i = 0; i < list.size(); i++) {
   //todo 商品key
   commodityIds[i] = SHOP_ID + list.get(i).get("shopId") + ":" + list.get(i).get("commodityId");
  }
  //todo 购物车key
  String key = SHOPPING_CART + userId;
  //删除商品的数量
  Long num = redisService.hdel(key, commodityIds);
  map.put("msg", "删除购物车的商品数量:" + num);
  map.put("code", 0);
  return map;
 }
}

工具类

package com.shoppingcart.utils;

import java.text.SimpleDateFormat;
import java.util.Date;

public class DateUtils {
 // 日期转字符串,返回指定的格式
 public static String dateToString(Date date, String dateFormat) {
  SimpleDateFormat sdf = new SimpleDateFormat(dateFormat);
  return sdf.format(date);
 }
}
package com.shoppingcart.utils;

import com.alibaba.fastjson.JSONObject;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.connection.RedisZSetCommands;
import org.springframework.data.redis.connection.SortParameters;
import org.springframework.data.redis.core.DefaultTypedTuple;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.core.ZSetOperations;
import org.springframework.stereotype.Service;
import org.springframework.util.CollectionUtils;
import org.w3c.dom.ranges.Range;

import java.util.*;
import java.util.concurrent.TimeUnit;
import java.util.stream.Collectors;

@Service
public class RedisService {

 @Autowired
 private RedisTemplate<String, Object> redisTemplate;

 // =============================common============================

 /**
  * 指定缓存失效时间
  *
  * @param key 键
  * @param time 时间(秒)
  * @return
  */
 public boolean expire(String key, long time) {
  try {
   if (time > 0) {
    redisTemplate.expire(key, time, TimeUnit.SECONDS);
   }
   return true;
  } catch (Exception e) {
   e.printStackTrace();
   return false;
  }
 }

 /**
  * 根据key 获取过期时间
  *
  * @param key 键 不能为null
  * @return 时间(秒) 返回0代表为永久有效
  */
 public long getExpire(String key) {
  return redisTemplate.getExpire(key, TimeUnit.SECONDS);
 }

 /**
  * 判断key是否存在
  *
  * @param key 键
  * @return true 存在 false不存在
  */
 public boolean hasKey(String key) {
  try {
   return redisTemplate.hasKey(key);
  } catch (Exception e) {
   e.printStackTrace();
   return false;
  }
 }

 /**
  * 删除缓存
  *
  * @param key 可以传一个值 或多个
  */
 @SuppressWarnings("unchecked")
 public void del(String... key) {
  if (key != null && key.length > 0) {
   if (key.length == 1) {
    redisTemplate.delete(key[0]);
   } else {
    List<String> list = new ArrayList<>(Arrays.asList(key));
    redisTemplate.delete(list);
   }
  }
 }

 /**
  * 删除缓存
  *
  * @param keys 可以传一个值 或多个
  */
 @SuppressWarnings("unchecked")
 public void del(Collection keys) {
  if (org.apache.commons.collections4.CollectionUtils.isNotEmpty(keys)) {
   redisTemplate.delete(keys);
  }
 }

 // ============================String=============================

 /**
  * 普通缓存获取
  *
  * @param key 键
  * @return 值
  */
 public Object get(String key) {
  return key == null ? null : redisTemplate.opsForValue().get(key);
 }

 /**
  * 普通缓存放入
  *
  * @param key 键
  * @param value 值
  * @return true成功 false失败
  */
 public boolean set(String key, Object value) {
  try {
   redisTemplate.opsForValue().set(key, value);
   return true;
  } catch (Exception e) {
   e.printStackTrace();
   return false;
  }
 }

 /**
  * 普通缓存放入并设置时间
  *
  * @param key 键
  * @param value 值
  * @param time 时间(秒) time要大于0 如果time小于等于0 将设置无限期
  * @return true成功 false 失败
  */
 public boolean set(String key, Object value, long time) {
  try {
   if (time > 0) {
    redisTemplate.opsForValue().set(key, value, time, TimeUnit.SECONDS);
   } else {
    set(key, value);
   }
   return true;
  } catch (Exception e) {
   e.printStackTrace();
   return false;
  }
 }

 /**
  * 递增
  *
  * @param key 键
  * @param delta 要增加几(大于0)
  * @return
  */
 public long incr(String key, long delta) {
  if (delta < 0) {
   throw new RuntimeException("递增因子必须大于0");
  }
  return redisTemplate.opsForValue().increment(key, delta);
 }

 /**
  * 递减
  *
  * @param key 键
  * @param delta 要减少几(小于0)
  * @return
  */
 public long decr(String key, long delta) {
  if (delta < 0) {
   throw new RuntimeException("递减因子必须大于0");
  }
  return redisTemplate.opsForValue().increment(key, -delta);
 }

 // ================================Hash=================================

 /**
  * HashGet
  *
  * @param key 键 不能为null
  * @param item 项 不能为null
  * @return 值
  */
 public Object hget(String key, String item) {
  return redisTemplate.opsForHash().get(key, item);
 }

 /**
  * 获取hashKey对应的所有键值
  *
  * @param key 键
  * @return 对应的多个键值
  */
 public Map<Object, Object> hmget(String key) {
  Map<Object, Object> entries = redisTemplate.opsForHash().entries(key);
  return entries;
 }

 /**
  * HashSet
  *
  * @param key 键
  * @param map 对应多个键值
  * @return true 成功 false 失败
  */
 public boolean hmset(String key, Map<String, Object> map) {
  try {
   redisTemplate.opsForHash().putAll(key, map);
   return true;
  } catch (Exception e) {
   e.printStackTrace();
   return false;
  }
 }

 /**
  * HashSet 并设置时间
  *
  * @param key 键
  * @param map 对应多个键值
  * @param time 时间(秒)
  * @return true成功 false失败
  */
 public boolean hmset(String key, Map<String, Object> map, long time) {
  try {
   redisTemplate.opsForHash().putAll(key, map);
   if (time > 0) {
    expire(key, time);
   }
   return true;
  } catch (Exception e) {
   e.printStackTrace();
   return false;
  }
 }

 /**
  * 向一张hash表中放入数据,如果存在就覆盖原来的值。
  *
  * @param key 键
  * @param item 项
  * @param value 值
  * @return true 成功 false失败
  */
 public boolean hset(String key, String item, Object value) {
  try {
   redisTemplate.opsForHash().put(key, item, value);
   return true;
  } catch (Exception e) {
   e.printStackTrace();
   return false;
  }
 }

 /**
  * 向一张hash表中放入数据,如果存在就覆盖原来的值。
  *
  * @param key 键
  * @param item 项
  * @param value 值
  * @param time 时间(秒) 注意:如果已存在的hash表有时间,这里将会替换原有的时间
  * @return true 成功 false失败
  */
 public boolean hset(String key, String item, Object value, long time) {
  try {
   redisTemplate.opsForHash().put(key, item, value);
   if (time > 0) {
    expire(key, time);
   }
   return true;
  } catch (Exception e) {
   e.printStackTrace();
   return false;
  }
 }

 /**
  * 删除hash表中的值
  *
  * @param key 键 不能为null
  * @param item 项 可以使多个 不能为null
  *    返回被删除的数量
  */
 public Long hdel(String key, Object... item) {
  return redisTemplate.opsForHash().delete(key, item);
 }

 /**
  * 删除hash表中的值
  *
  * @param key 键 不能为null
  * @param items 项 可以使多个 不能为null
  */
 public void hdel(String key, Collection items) {
  redisTemplate.opsForHash().delete(key, items.toArray());
 }

 /**
  * 判断hash表中是否有该项的值
  *
  * @param key 键 不能为null
  * @param item 项 不能为null
  * @return true 存在 false不存在
  */
 public boolean hHasKey(String key, String item) {
  return redisTemplate.opsForHash().hasKey(key, item);
 }

 /**
  * hash数据类型:给元素一个增量 如果不存在,就会创建一个 并把新增后的值返回
  *
  * @param key 键
  * @param item 项
  * @param delta 要增加几(大于0)
  * @return
  */
 public double hincr(String key, String item, double delta) {
  return redisTemplate.opsForHash().increment(key, item, delta);
 }
 // ============================set=============================

 /**
  * 根据key获取Set中的所有值
  *
  * @param key 键
  * @return
  */
 public Set<Object> sGet(String key) {
  try {
   return redisTemplate.opsForSet().members(key);
  } catch (Exception e) {
   e.printStackTrace();
   return null;
  }
 }

 /**
  * 根据value从一个set中查询,是否存在
  *
  * @param key 键
  * @param value 值
  * @return true 存在 false不存在
  */
 public boolean sHasKey(String key, Object value) {
  try {
   return redisTemplate.opsForSet().isMember(key, value);
  } catch (Exception e) {
   e.printStackTrace();
   return false;
  }
 }

 /**
  * 将数据放入set缓存
  *
  * @param key 键
  * @param values 值 可以是多个
  * @return 成功个数
  */
 public long sSet(String key, Object... values) {
  try {
   return redisTemplate.opsForSet().add(key, values);
  } catch (Exception e) {
   e.printStackTrace();
   return 0;
  }
 }

 /**
  * 将数据放入set缓存
  *
  * @param key 键
  * @param values 值 可以是多个
  * @return 成功个数
  */
 public long sSet(String key, Collection values) {
  try {
   return redisTemplate.opsForSet().add(key, values.toArray());
  } catch (Exception e) {
   e.printStackTrace();
   return 0;
  }
 }

 /**
  * 将set数据放入缓存
  *
  * @param key 键
  * @param time 时间(秒)
  * @param values 值 可以是多个
  * @return 成功个数
  */
 public long sSetAndTime(String key, long time, Object... values) {
  try {
   Long count = redisTemplate.opsForSet().add(key, values);
   if (time > 0)
    expire(key, time);
   return count;
  } catch (Exception e) {
   e.printStackTrace();
   return 0;
  }
 }

 /**
  * 获取set缓存的长度
  *
  * @param key 键
  * @return
  */
 public long sGetSetSize(String key) {
  try {
   return redisTemplate.opsForSet().size(key);
  } catch (Exception e) {
   e.printStackTrace();
   return 0;
  }
 }

 /**
  * 移除值为value的
  *
  * @param key 键
  * @param values 值 可以是多个
  * @return 移除的个数
  */
 public long setRemove(String key, Object... values) {
  try {
   Long count = redisTemplate.opsForSet().remove(key, values);
   return count;
  } catch (Exception e) {
   e.printStackTrace();
   return 0;
  }
 }

 // ===============================list=================================

 /**
  * 获取list缓存的内容
  *
  * @param key 键
  * @param start 开始
  * @param end 结束 0 到 -1代表所有值
  * @return
  */
 public List<Object> lGet(String key, long start, long end) {
  try {
   return redisTemplate.opsForList().range(key, start, end);
  } catch (Exception e) {
   e.printStackTrace();
   return null;
  }
 }

 /**
  * 获取list缓存的长度
  *
  * @param key 键
  * @return
  */
 public long lGetListSize(String key) {
  try {
   return redisTemplate.opsForList().size(key);
  } catch (Exception e) {
   e.printStackTrace();
   return 0;
  }
 }

 /**
  * 通过索引 获取list中的值
  *
  * @param key 键
  * @param index 索引 index>=0时, 0 表头,1 第二个元素,依次类推;index<0时,-1,表尾,-2倒数第二个元素,依次类推
  * @return
  */
 public Object lGetIndex(String key, long index) {
  try {
   return redisTemplate.opsForList().index(key, index);
  } catch (Exception e) {
   e.printStackTrace();
   return null;
  }
 }

 /**
  * 将list放入缓存
  *
  * @param key 键
  * @param value 值
  * @return
  */
 public boolean lSet(String key, Object value) {
  try {
   redisTemplate.opsForList().rightPush(key, value);
   return true;
  } catch (Exception e) {
   e.printStackTrace();
   return false;
  }
 }

 /**
  * 将list放入缓存
  *
  * @param key 键
  * @param value 值
  * @param time 时间(秒)
  * @return
  */
 public boolean lSet(String key, Object value, long time) {
  try {
   redisTemplate.opsForList().rightPush(key, value);
   if (time > 0)
    expire(key, time);
   return true;
  } catch (Exception e) {
   e.printStackTrace();
   return false;
  }
 }

 /**
  * 将list放入缓存
  *
  * @param key 键
  * @param value 值
  * @return
  */
 public boolean lSet(String key, List<Object> value) {
  try {
   redisTemplate.opsForList().rightPushAll(key, value);
   return true;
  } catch (Exception e) {
   e.printStackTrace();
   return false;
  }
 }

 /**
  * 将list放入缓存
  *
  * @param key 键
  * @param value 值
  * @param time 时间(秒)
  * @return
  */
 public boolean lSet(String key, List<Object> value, long time) {
  try {
   redisTemplate.opsForList().rightPushAll(key, value);
   if (time > 0)
    expire(key, time);
   return true;
  } catch (Exception e) {
   e.printStackTrace();
   return false;
  }
 }

 /**
  * 根据索引修改list中的某条数据
  *
  * @param key 键
  * @param index 索引
  * @param value 值
  * @return
  */
 public boolean lUpdateIndex(String key, long index, Object value) {
  try {
   redisTemplate.opsForList().set(key, index, value);
   return true;
  } catch (Exception e) {
   e.printStackTrace();
   return false;
  }
 }

 /**
  * 移除N个值为value
  *
  * @param key 键
  * @param count 移除多少个
  * @param value 值
  * @return 移除的个数
  */
 public long lRemove(String key, long count, Object value) {
  try {
   Long remove = redisTemplate.opsForList().remove(key, count, value);
   return remove;
  } catch (Exception e) {
   e.printStackTrace();
   return 0;
  }
 }
 // ===============================Zset=================================

 /**
  * 给key键的value增加value分数,没有则会创建。
  *
  * @param key 键
  * @param value 值
  * @param score 分数
  */
 public Double incrementScore(String key, String value, double score) {
  //Boolean add = redisTemplate.boundZSetOps(key).add(value, score);
  Double add = redisTemplate.boundZSetOps(key).incrementScore(value, score);
  return add;
 }

 /**
  * 获得指定Zset元素的分数
  *
  * @param key
  * @param value
  * @return
  */
 public Double score(String key, String value) {
  Double score = redisTemplate.boundZSetOps(key).score(value);
  return score;
 }

 /**
  * 升序查询key集合内[endTop,startTop]如果是负数表示倒数
  * endTop=-1,startTop=0表示获取所有数据。
  *
  * @param key
  * @param startPage
  * @param endPage
  */
 public Set<ZSetOperations.TypedTuple<Object>> rangeWithScores(String key, int startPage, int endPage) {
  Set<ZSetOperations.TypedTuple<Object>> set = redisTemplate.boundZSetOps(key).rangeWithScores(startPage, endPage);
  return set;
 }

 /**
  * 降序查询key集合内[endTop,startTop],如果是负数表示倒数
  * endTop=-1,startTop=0表示获取所有数据。
  *
  * @param key
  * @param startPage
  * @param endPage
  */
 public Set<ZSetOperations.TypedTuple<Object>> reverseRangeWithScores(String key, int startPage, int endPage) {
  Set<ZSetOperations.TypedTuple<Object>> set = redisTemplate.boundZSetOps(key).reverseRangeWithScores(startPage, endPage);
  return set;
 }

 /**
  * 批量新增数据
  *
  * @param key
  * @param set
  * @return
  */
 public Long zsetAdd(String key, Set set) {
  Long add = redisTemplate.boundZSetOps(key).add(set);
  return add;
 }

 /**
  * 删除指定键的指定下标范围数据
  *
  * @param key
  * @param startPage
  * @param endPage
  */
 public Long zsetRemoveRange(String key, int startPage, int endPage) {
  Long l = redisTemplate.boundZSetOps(key).removeRange(startPage, endPage);
  return l;
 }
 /**
  * 删除指定键的指定值
  *
  * @param key
  * @param value
  */
 public Long zsetRemove(String key, String value) {
  Long remove = redisTemplate.boundZSetOps(key).remove(value);
  return remove;
 }
}

到此这篇关于Redis实战之商城购物车功能的实现代码的文章就介绍到这了,更多相关Redis商城购物车内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

(0)

相关推荐

  • PHP+redis实现的购物车单例类示例

    本文实例讲述了PHP+redis实现的购物车单例类.分享给大家供大家参考,具体如下: <?php /** * 购物车单例类 * * @author YING * @param void * @return void */ class CartSingleton { //定义一个静态的私有变量 static private $_instance=null; private $redis=null; //私有化的构造方法 private final function __construct() {

  • Redis实战之商城购物车功能的实现代码

    目标 利用Redis实现商城购物车功能. 功能 根据用户编号查询购物车列表,且各个商品需要跟在对应的店铺下:统计购物车中的商品总数:新增或删减购物车商品:增加或减少购物车中的商品数量. 分析 Hash数据类型:值为多组映射,相当于JAVA中的Map.适合存储对象数据类型.因为用户ID作为唯一的身份标识,所以可以把模块名称+用户ID作为Redis的键:商品ID作为商品的唯一标识,可以把店铺编号+商品ID作为Hash元素的键,商品数量为元素的值. 代码实现 控制层 package com.shopp

  • Android实现商城购物车功能的实例代码

    最近公司项目做商城模块,需要实现购物车功能,主要实现了单选.全选,金额合计,商品删除,商品数量加减等功能,先看看效果图: 在这里插入图片描述 一.实现步骤: 0.添加依赖库 1.购物车主界面布局文件(activity_main.xml) 2.购物车实现逻辑主界面(MainActivity.class) 3.使用ExpandableListView,继承BaseExpandableListAdapter 4.购物车数据的bean类(ShoppingCarDataBean.class) 5.分店铺实

  • vue实现商城购物车功能

    本文实例为大家分享了vue实现商城购物车功能的具体代码,供大家参考,具体内容如下 首先,先上最终的效果图 效果并不是很好看,但是这不是重点. 首先,我们先看下布局: <template> <div class="shopcar" id="demo04"> <div class="header-title"> <h3>购物车</h3> </div> <div class=

  • jQuery实现移动端手机商城购物车功能

    购物车数量加减 右加号 $(".jiahao").click(function() { var t = $(this).siblings().find("input");//取到数量 t.val(parseInt(t.val()) + 1);//parseInt()解析input一个字符串,返回一个整数 heji();//调用后面计算的函数 }) 左减号 $(".jianhao").click(function() { var t = $(thi

  • Redis实现订单自动过期功能的示例代码

    前言 用户下单后,规定XX分钟后自动设置为"已过期",不能再发起支付.项目类似此类"过期"的需求,笔者提供一种使用Redis的解决思路,结合Redis的订阅.发布和键空间通知机制(Keyspace Notifications)进行实现. 配置redis.confg notify-keyspace-events选项默认是不启用,改为notify-keyspace-events "Ex".重启生效,索引位i的库,每当有过期的元素被删除时,向**key

  • Javascript实现购物车功能的详细代码

    我们肯定都很熟悉商品购物车这一功能,每当我们在某宝某东上购买商品的时候,看中了哪件商品,就会加入购物车中,最后结算.购物车这一功能,方便消费者对商品进行管理,可以添加商品,删除商品,选中购物车中的某一项或几项商品,最后商品总价也会随着消费者的操作随着变化. 现在,笔者对购物车进行了简单实现,能够实现真实购物车当中的大部分功能.在本示例当中,用到了javascript中BOM操作,DOM操作,表格操作,cookie,json等知识点,同时,采用三层架构方式对购物车进行设计,对javascript的

  • Django 实现购物车功能的示例代码

    购物车思路:使用 session 功能识别不同浏览器用户,使得用户不管是否登录了网站,均能够把想要购买的产品放在某个地方,之后随时可以显示或修改要购买的产品,等确定了之后再下订单,购物车可以用来暂存商品. 我们可以使用 session 为每一个用户创建一个 ID,然后以这个 ID 作为创建每一个购物车的依据.这个购物车在用户浏览过程中会保留数据,一直到实际完成下单,用户执行清除,或者关闭浏览器为止,当然,退出登录的话购物车内容也会消失不见. 在 settings.py 文件中加入下列语句,表示要

  • java web开发之购物车功能实现示例代码

    之前没有接触过购物车的东东,也不知道购物车应该怎么做,所以在查询了很多资料,总结一下购物车的功能实现. 查询的资料,找到三种方法: 1.用cookie实现购物车: 2.用session实现购物车: 3.用cookie和数据库(购物车信息持久化)实现购物车: 分析一下这三种方法的优缺点: 1.单纯有cookie实现购物车,这样的购物车不是很理想,设想一下,如果客户端的浏览器把cookie给禁用了,这种方法就会在这里流产- 2.session中保存购物车的信息,这个只是在一个会话中可用,如果用户没有

  • 使用vuex较为优雅的实现一个购物车功能的示例代码

    前言 最近使用Vue全家桶手撸了一个pc版小米商城的前端项目,对于组件通信和状态管理有了一个更加深刻的认识.因为组件划分的比较细,开始我使用的是基本的props和emit传值,后来发现一旦嵌套过深就变得很繁琐,同时考虑到有多个组件存在需要共同管理的状态,基本的传值已经没有办法满足需求了,所以使用到了vuex来划分模块管理状态.这里需要提一点就是,如果不存在多组件共同管理的状态,最好是不用vuex管理,vuex是用来管理多组件共同状态的,单单只需要实现跨组件.隔代组件通信的话,使用eventbus

  • scrapy框架携带cookie访问淘宝购物车功能的实现代码

    scrapy框架简介 Scrapy是用纯Python实现一个为了爬取网站数据.提取结构性数据而编写的应用框架,用途非常广泛 框架的力量,用户只需要定制开发几个模块就可以轻松的实现一个爬虫,用来抓取网页内容以及各种图片,非常之方便 scrapy架构图 crapy Engine(引擎): 负责Spider.ItemPipeline.Downloader.Scheduler中间的通讯,信号.数据传递等. Scheduler(调度器): 它负责接受引擎发送过来的Request请求,并按照一定的方式进行整

随机推荐