收藏功能实现

Posted qianjinyan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了收藏功能实现相关的知识,希望对你有一定的参考价值。

1. 需求分析

收藏店铺,或者关注店铺,或者是其他app当中的follow

收藏的动作可以获得积分,礼券,小样,正品等

收藏可以是被取消的,但是未必自己就能捕获的到,比如微信中,会员对于公众号的取关操作;淘宝中,会员取消关注店铺等

会员取消收藏之后,再次收藏,不再给与奖励,收藏的时间,进行更新

 

2.表结构设计

会员表,积分表,是以前就有的,本次新增收藏店铺功能,需要新增一下的表:

首先要有记录用户收藏,暂且定义为HCollection表或者HFollow

技术图片

 

3. 后台代码实现

Controller

@RestController
@RequestMapping(value = "collect")
public class CollectController extends BaseController 

    @Autowired
    CollectService collectService;


    @Autowired
    SocialProviderService socialProviderService;

    @ApiOperation(value = "收藏历史记录", notes = "收藏历史记录")
    @GetMapping(value = "history", produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
    private ResponseBean collectHis(@RequestParam("userId") String userId,
                                      @RequestParam("social") String social) 

        ResponseBean responseBean = new ResponseBean();
        HTmallCollectRecord tmallCollectRecord = collectService.collectedTmallHis(userId, social);
        responseBean.setData(tmallCollectRecord);
        return responseBean;
    
    
    @ApiOperation(value = "收藏店铺", notes = "收藏店铺")
    @GetMapping(value = "DoCollect", produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
    private ResponseBean DoCollect(@RequestParam("userId") String userId,
                                      @RequestParam("social") String social) 

        ResponseBean responseBean = new ResponseBean();
		collectService.collectTmall(userId, social);
        return responseBean;
    


 

收藏的接口

public interface CollectService 
	HTmallCollectRecord collectedTmallHis(String userId, String social);	
	void collectTmall(String userId,String social);

 

收藏的具体实现 

太简单了,不写了

  

以上是关于收藏功能实现的主要内容,如果未能解决你的问题,请参考以下文章

简单收藏功能的实现(SpringBoot,MybatisPlus,Vue)

基于Metronic的Bootstrap开发框架经验总结(13)--页面链接收藏夹功能的实现2

JQUERY 实现加入收藏夹功能

js实现收藏,首页等功能

Python用20行代码实现完整邮件功能 [完整代码+建议收藏]

4.爱收藏——首页搜索功能实现