商城微信小程序的设计与实现
学生姓名:某某 学号:20171111 指导教师:张翀
摘要:基于手机端的网上购物已成为人们日常生活的一部分,而微信小程序是一款基于微信生态圈的类似于Web APP的一种应用程序,由于它无需注册,无需下载,触手可及的特点,受到许多用户与开发者的喜爱。本文开发的系统就是一款基于.NET Core的商场微信小程序,以满足人们的网上购物需求。
本系统主要分为前台展示和后台管理两部分。其中前台包括商品信息显示、商品搜索、动态导航、个人中心等页面,后台则包括商品管理、分类管理、订单管理、用户管理和购物车五大模块。
本系统通过MD5和ASE加密算法对签名进行处理,确保了用户信息的安全;通过基于关联规则的推荐算法预测用户的购买偏好,从而优先展示推荐商品;通过基于词法分析的搜索算法,实现了多关键字模糊查询功能。
本系统采用微信开发者工具进行开发,后端利用PHP的thinkPHP5框架以及MySQL数据库来实现。运行结果表明该小程序具有良好的稳定性和可扩展性,这对于方便人们网上购物,提升购物体验有着重要的意义。
关键词:微信小程序 网上购物 商城 .NET
Design and implementation of Wechat Mini Program in shopping mall
Student:moumou Instructor:Zhangchong
Abstract: Online shopping based on mobile terminal has become a part of people's daily life, and wechat app is a kind of application similar to web app based on wechat ecosystem, which is loved by many users and developers because it does not need to register, download and reach. The system developed in this paper is a wechat app based on. Net core to meet people's online shopping needs.
The system is mainly divided into two parts: front display and back management. The foreground includes commodity information display, commodity search, dynamic navigation, personal center and other pages, while the background includes commodity management, classification management, order management, user management and shopping cart.
In this system, MD5 and ASE encryption algorithm are used to process the signature to ensure the security of user information; recommendation algorithm based on association rules is used to predict the user's purchase preference, so as to give priority to the display of recommended products; search algorithm based on lexical analysis is used to realize the multi key word fuzzy query function.
The system uses wechat developer tools to develop, and the back-end uses php thinkphp5 framework and MySQL database to achieve. The running results show that the small program has good stability and scalability, which is of great significance to facilitate people's online shopping and improve the shopping experience.
Key words: Wechat Mini Program online shopping mall .net
目录
第1章 概述 1
1.1 项目背景介绍 1
1.2 微信小程序概述 1
1.2.1 微信小程序发展状况 2
1.2.2 微信小程序丰富的API接口 2
第2章 相关技术概述 3
2.1 .NET Core概述 3
2.1.1 .NET Core支持3大主流平台 3
2.1.2 MVC开发模式 3
2.1.3 丰富多彩的NuGet包化的结构 3
2.2 Vue.js 4
2.3 MySQL数据库 5
2.4 MVVM 5
第3章 需求分析 7
3.1 获取需求 7
3.2 分析需求 7
3.2.1 功能性需求 7
3.2.2 非功能性需求 9
3.2.3 设计约束 9
第4章 系统设计 10
4.1 架构设计 10
4.2 总体设计 10
4.3 功能模块设计 11
4.3.1 小程序自动登陆 11
4.3.2 编辑收货地址 12
4.3.3 商品展示 13
4.3.4 购买商品 13
4.3.5 查询商品 14
4.3.6 收藏商品与添加购物车 15
4.3.7 订单查询 17
4.3.8 后台系统登陆 17
4.3.9 管理商品 18
4.3.10 管理订单 19
4.3.11 管理员账号管理 20
4.3.12 轮播图管理 21
4.4 数据库设计 22
4.4.1 对象与对象关系设计 22
4.4.2 数据库表设计 24
4.4.3 数据库链接设计 28
第5章 系统实现 29
5.1 系统前端页面的实现 29
5.1.1 微信小程序端界面 29
5.1.2 .NET Core后端界面 31
5.2 功能模块实现 32
5.2.1 微信商城小程序自动登陆 32
5.2.2 轮播图 33
5.2.3 商品 35
5.2.4 商品购买 37
5.2.5 加入购物车与商品收藏 40
5.2.6 收货地址 41
5.2.7 后台登陆与权限 44
5.2.8 后台功能 47
第6章 系统测试 49
6.1 测试环境 49
6.2 小程序界面测试 49
6.3 功能测试用例 49
6.3.1 收货地址操作 49
6.3.2 购买商品 50
6.3.3 微信小程序登陆 51
6.3.4 管理员登陆 51
第7章 结 论 53
参考文献 54
致 谢 55