登录

  • 登录
  • 忘记密码?点击找回

注册

  • 获取手机验证码 60
  • 注册

找回密码

  • 获取手机验证码60
  • 找回
毕业论文网 > 毕业论文 > 计算机类 > 计算机科学与技术 > 正文

微信小程序电子商城的设计与实现毕业论文

 2021-12-21 21:11:08  

论文总字数:30155字

摘 要

随着智能手机的风靡和日益普及,在众多手机软件中微信得到了大众的广泛的认可和应用。微信的功能和技术随着微信的发展越来越完善。越来越多的个人和企业看到微信的用户基数大、用户粘性高,逐渐加入微信营销的行列,即微信业务。销售因其信息传输速度快的特点大大提高,因此,专门开发了这个微信电子商城小程序。

本微信电子商城小程序采用JAVA开发语言,MYSQL数据库,基于微信小程序设计开发。本微信商城小程序主要实现了用户在微信小程序上的在线购物,管理人员在系统后台对微信电子商城小程序进行综合管理,包括用户列表和商品列表等。微信电子商城小程序操作简单,界面交互友好,具有很高的使用价值,通过这个微信电子商城小程序用户可以不受时间和地点限制进行查看商品和购物,无需额外下载并安装手机软件,只需要扫描小程序码或者搜索小程序就可以打开这个微信电子商城小程序,用户只需搜索想要的商品即可完成在线下单。同时,商家通过这个微信电子商城小程序可以大大提高商品周转率。

此毕业设计分析了微信小程序电子商城的系统需求、总体设计和详细设计,总体规划了开发环境、流程、功能等方面。系统根据用户的需求开发功能模块,为用户提供方便的在线购物平台。该系统界面简单,操作便利,易于理解,管理方便,功能较多,具有很高的应用价值。

 

 

关键词:微信小程序 Java开发语言 MySQL数据库

Design and Implementation of WeChat Mini Program Electronic Store

Abstract

With the extensive use and popularization of intelligent phones, Wechat is widely recognized and applied in many mobile software. With the development of WeChat, the functions and technologies of WeChat become more and more perfect. More and more individuals and enterprises see WeChat ’s large user base and high user stickiness, and gradually join the ranks of WeChat marketing, namely WeChat business. Because of its fast information transmission characteristics, sales have been greatly improved, so we specially developed this WeChat electronic mall applet.

This WeChat electronic mall applet uses JAVA development language, MYSQL database, based on WeChat applet design and development. This WeChat mall applet mainly realizes the online shopping of users on the WeChat applet. The management personnel manages the WeChat electronic mall applet in the background of the system, including user lists and product lists. The e-shop mini program which is friendly to everyone and running on WeChat is simple operated and very useful. Through this WeChat electronic mall applet, users can view goods and shop regardless of time and location. No additional download and installation of mobile software is required. Scan the applet code or search the applet to open this WeChat electronic mall applet. Users only need to search for the desired goods to complete the online order. At the same time, merchants can greatly improve the commodity turnover rate through this WeChat e-shop mini-program.

The general and detailed requirements, design of WeChat Mini Program Electronic Store, functions and general plans for the development environment, processes were analyzed,. Functional modules is developed by the system in terms of the needs of users to provide users with a convenient online shopping platform. The system has clear interface, and it is convenient to operate, easy to understand. There are many functions and convenient management. Finally it has high application value.

 

Key Words: WeChat Mini Program; Java development language; MySQL database目 录

摘要…………………………………………………………………………………I

ABSTRACT………………………………………………………………………II

第一章 绪论………………………………………………………………………1

1.1 研究背景……………………………………………………………………1

1.2 研究意义……………………………………………………………………1

1.3 研究现状……………………………………………………………………2

1.4 课题研究内容………………………………………………………………3

1.5 论文结构……………………………………………………………………4

第二章 相关技术…………………………………………………………………5

2.1数据库管理系统……………………………………………………………5

2.2 微信小程序…………………………………………………………………5

2.2.1 开发框架……………………………………………………………6

2.2.2 微信标签语言………………………………………………………6

2.2.3 微信样式语言………………………………………………………7

2.3 Spring Boot…………………………………………………………………7

2.4 前端框架……………………………………………………………………7

2.5 本章总结……………………………………………………………………7

第三章 数据库的设计与实现…………………………………………………9

3.1数据库开发环境搭建………………………………………………………9

3.2 数据库emall………………………………………………………………9

3.2.1 数据库emall的创建…………………………………………………9

3.2.2 数据库emall表格的设计…………………………………………10

3.2.3 数据库emall的ER图………………………………………………14

3.3 本章总结……………………………………………………………………18

第四章 需求分析与总体设计…………………………………………………19

4.1需求分析……………………………………………………………………19

4.1.1 功能需求……………………………………………………………19

4.1.2 性能需求……………………………………………………………20

4.1.3 系统运行环境………………………………………………………21

4.2 商城架构和模块设计………………………………………………………21

4.3 本章总结……………………………………………………………………22

第五章 设计与实现……………………………………………………………23

5.1电子商城设计………………………………………………………………23

5.1.1 电子商城后端的设计………………………………………………23

5.1.2 小程序界面设计……………………………………………………24

5.1.3 管理员后台前端界面设计…………………………………………24

5.2 接口API的设计……………………………………………………………25

5.2.1 请求格式和响应格式………………………………………………25

5.2.2 标识令牌……………………………………………………………25

5.3 电子商城后端的实现………………………………………………………27

5.3.1 db模块实现…………………………………………………………27

5.3.2 core模块实现………………………………………………………28

5.3.3 wx-api和admin-api实现…………………………………………29

5.4 本章总结……………………………………………………………………29

第六章 系统测试和性能评估…………………………………………………30

6.1单元测试……………………………………………………………………30

6.2 接口测试……………………………………………………………………31

6.3 性能评估……………………………………………………………………32

6.4 具体场景测试………………………………………………………………32

6.5 本章总结……………………………………………………………………33

第七章 总结与展望……………………………………………………………34

7.1总结…………………………………………………………………………34

7.2 展望…………………………………………………………………………34

参考文献…………………………………………………………………………35

致谢………………………………………………………………………………37

第一章 绪论

绪论主要内容重点交代了本课题微信小程序作为电子商城服务平台的应用研究的主要发展背景、研究的重要意义和本课题在国内外的应用和研究现状,同时重点阐述了本文研究的主要内容和本课题论文的主要内容结构。

1.1 研究背景

因为政府应对新冠病毒疫情的政策导致实体企业和零售的商家们都被迫关门停止了生意,这期间实体零售商家们的生意和现金流也停滞了,这一情况困扰着线下的实体零售商们,顾客无法来到实体店,没有顾客,也就没有销量,没有销量也就没有了获利的方式,这一巨大的缺点在只做线下零售实体的商户因为疫情暴露了出来。小程序可以连通线上的顾客和线下的商户,这个小程序的一大优势,这时优势在商家的面前显现出来,一波新的机遇被商家们所发现并准备牢牢抓住。

请支付后下载全文,论文总字数:30155字

您需要先支付 80元 才能查看全部内容!立即支付

企业微信

Copyright © 2010-2022 毕业论文网 站点地图