本科毕业设计论文
基于微信小程序的生活助手的设计与实现Design and Implementation of Life AssistantBased on WeChat Mini Program
院 系 计算机学院
专 业 网络工程
班 级 三班
学 号 16210220315
学生姓名 温维聪
指导教师 黄晴晴
提交日期 2020年04月17日
毕业设计论文原创性声明
本人郑重声明所呈交的毕业设计论文 是本人在指导老师的指导下独立进行的设计研究工作及取得的成果论文中引用他人的文献、数据、图件、资料均已明确标注出论文中的结论和结果为本人独立完成不包含他人已经发表或撰写的作品及成果。对本文的研究作出贡献的个人和集体均已在论文中作了明确的说明。本人完全意识到本声明的法律结果由本人承担。
毕业论文作者签字 签字日期 年 月 日
成绩评定
注毕业设计论文成绩按百分制评定。答辩成绩不及格的评分低于60分的 则该毕业设计论文总评成绩为答辩成绩。
摘 要
本文主要设计并实现了一款基于微信小程序的生活助手开发生活助手的一个方案该设计主要用于解决互联网时代下快节奏的生活对信息获取的日益破解和日益臃肿的应用程序的矛盾 以此来带给人们获取信息更加轻便快捷的体验。
本设计的生活助手小程序的设计和实现包含应用前端和管理后台两个部分其中前端运用了JavaS cript技术并利用微信小程序独有的视图层来完成我们的界面渲染。前端界面主要实现了“天气信息” 、 “股票信息” 、 “笑话阅读” 、 “历史上的今天” 、 “星座运势” 、 “图片备份” 、 “备忘录” 、 “计算器” 、 “事件助手”等功能管理后台使用Django框架通过微信小程序提供的AP I进行前后台数据互连 。从而实现的“个人生活助手”基于“轻”应用的潮流和个人便利生活的需求。
关键词 Django JavaS cript微信小程序
Abstract
This article mainly designs and implements a life as sistant basedon WeChat applet, and develops a solution for life assistant.The designis mainly used to solve the contradiction between the increasinglycracked and increasingly bloated applications of fast-paced life in theInternet era. , In order to give people a more convenient and fasterexperience in obtaining information.
The design and implementation of the designed life assistant appletincludes the application front end and the management back end.Thefront end uses JavaScript technology and uses the unique view layer ofthe WeChat applet to complete our interface rendering.The front-endinterface mainly implements "weather information", "stockinformation", "joke reading", "historical today", "horoscope", "picturebackup", "memo", "calculator", "event as sistant"And other functions;the management background uses the Django framework, and the dataconnection between the front and background is performed through theAPI provided by the WeChat applet.The "personal life assistant" thusrealized is based on the trend of"light" applications and the needs ofp ersonal c onvenienc e.
Key words: Django JavaScript Applet of WeChat
目 录
第一章绪论.....................................................................................1
1. 1项目背景与意义. . . . . . . . . . . . . . . . . . . . . . . . . . . . .1
1.2国内外发展状态. . . . . . . . . . . . . . . . . . . . . . . . . . . . .2
1.2. 1国内外研究现状. . . . . . . . . . . . . . . . . . . . . . . . . . . .2
第二章相关理论与开发技术综述....................................................3
2. 1微信小程序. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .3
2. 1. 1微信小程序简介. . . . . . . . . . . . . . . . . . . . . . . . . . . .3
2. 1.2微信小程序开发工具. . . . . . . . . . . . . . . . . . . . . . . .4
2.2技术开发模式. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .4
2.2. 1MVC设计模式. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .4
2.2. 2MTV设计模式. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .5
2.3技术架构. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .6
2.3. 1小程序框架. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .6
2.3.2小程序API. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .7
2.3.3后端Django框架. . . . . . . . . . . . . . . . . . . . . . . . . . .8
2.4开发环境及配置. . . . . . . . . . . . . . . . . . . . . . . . . . . . .8
2.5本章小结. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .9
第三章需求分析与设计.................................................................10
3. 1需求分析. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .10
3. 1. 1市场需求分析. . . . . . . . . . . . . . . . . . . . . . . . . . . . .10
3. 1.2可行性分析. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .11
3. 1.3功能需求分析. . . . . . . . . . . . . . . . . . . . . . . . . . . . .11
3.2系统设计. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .12
3.2. 1小程序设计原则. . . . . . . . . . . . . . . . . . . . . . . . . . .12
3.2. 2 Django设计原则. . . . . . . . . . . . . . . . . . . . . . . . . .12
3.3系统设计. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .13
3.3. 1系统总体设计. . . . . . . . . . . . . . . . . . . . . . . . . . . . .13
3.3.2系统功能设计. . . . . . . . . . . . . . . . . . . . . . . . . . . . .13
3.4本章小结. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .13
第四章数据库设计与实现.............................................................15
4. 1数据库E-R关系设计. . . . . . . . . . . . . . . . . . . . . . . .16
4.2数据库表设计. . . . . . . . . . . . . . . . . . . . . . . . . . . . .17
4.3本章小结. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .23
第五章程序功能模块实现.............................................................24
5. 1小程序前端界面设计与实现. . . . . . . . . . . . . . . . . . .24
5. 1. 1 “首页”页面. . . . . . . . . . . . . . . . . . . . . . . . . . . . .24
5. 1. 2 “周边”页面. . . . . . . . . . . . . . . . . . . . . . . . . . . . .25
5. 1. 3 “应用功能”页面. . . . . . . . . . . . . . . . . . . . . . . . . .26
5. 1.4 “个人中心”页面. . . . . . . . . . . . . . . . . . . . . . . . . .27
5.2小程序前端核心功能实现. . . . . . . . . . . . . . . . . . . . .29
5.2. 1图片备份功能实现. . . . . . . . . . . . . . . . . . . . . . . . .29
5.2.2计算器功能实现. . . . . . . . . . . . . . . . . . . . . . . . . . .30
5.2.3备忘录功能实现. . . . . . . . . . . . . . . . . . . . . . . . . . .30
5.2.4事件助手功能实现. . . . . . . . . . . . . . . . . . . . . . . . .32
5.3后端核心功能实现. . . . . . . . . . . . . . . . . . . . . . . . . .35
5.3. 1用户状态绑定功能实现. . . . . . . . . . . . . . . . . . . . . .34
5.3.2后端AP I数据调取实现. . . . . . . . . . . . . . . . . . . . . .35
5.3.3后端缓存模块. . . . . . . . . . . . . . . . . . . . . . . . . . . . .36
5.4本章小结. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .38
第六章系统功能测试....................................................................38
6. 1测试目标. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .38
6.2页面及功能测试. . . . . . . . . . . . . . . . . . . . . . . . . . . .38
6.2. 1模拟器调试体验评分. . . . . . . . . . . . . . . . . . . . . . .38
6.2. 2真机调试. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .38
6.3兼容性测试. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .44
6.4本章小结. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .45
第七章总结与展望........................................................................46
7. 1总结. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .46
7.2展望. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .47
参考文献...................................................................................48
致谢...............................................................................................48
spinservers美国圣何塞机房的独立服务器补货120台,默认接入10Gbps带宽,给你超高配置,这价格目前来看好像真的是无敌手,而且可以做到下单后30分钟内交货,都是预先部署好了的。每一台机器用户都可以在后台自行安装、重装、重启、关机操作,无需人工参与! 官方网站:https://www.spinservers.com 比特币、信用卡、PayPal、支付宝、webmoney、Payssi...
RAKsmart怎么样?RAKsmart发布了2021年中促销,促销时间,7月1日~7月31日!,具体促销优惠整理如下:1)美国西海岸的圣何塞、洛杉矶独立物理服务器低至$30/月(续费不涨价)!2)中国香港大带宽物理机,新品热卖!!!,$269.23 美元/月,3)站群服务器、香港站群、日本站群、美国站群,低至177美元/月,4)美国圣何塞,洛杉矶10G口服务器,不限流量,惊爆价:$999.00,...
DMIT.io是成立于2018年的一家国外主机商,提供VPS主机和独立服务器租用,数据中心包括中国香港、美国洛杉矶和日本等,其中日本VPS是新上的节点,基于KVM架构,国际线路,1Gbps带宽,同时提供月付循环8折优惠码,或者年付一次性5折优惠码,优惠后最低每月8.72美元或者首年65.4美元起,支持使用PayPal或者支付宝等付款方式。下面列出部分日本VPS主机配置信息,价格以月付为例。CPU:...