实例介绍
实现的登陆注册功能,能够执行本地自动化测试脚本生成测试报告,基于django进行开发,页面集成了百度地图、文件上传下载,富文本,数据库查询,开启摄像头功能,具体见博客描述“https://mp.csdn.net/postedit/84306815”遇到问题加qq群:651587317
【实例截图】
【核心代码】
cb7b7cc7-4d20-45f2-ba7b-ea719790d42c
└── mysite_login
├── db.sqlite3
├── login
│ ├── admin.py
│ ├── admin.pyc
│ ├── apps.py
│ ├── forms.py
│ ├── forms.pyc
│ ├── __init__.py
│ ├── __init__.pyc
│ ├── migrations
│ │ ├── 0001_initial.py
│ │ ├── 0001_initial.pyc
│ │ ├── 0002_pictest.py
│ │ ├── 0002_pictest.pyc
│ │ ├── 0003_user.py
│ │ ├── 0003_user.pyc
│ │ ├── 0004_goodsinfo.py
│ │ ├── 0004_goodsinfo.pyc
│ │ ├── __init__.py
│ │ └── __init__.pyc
│ ├── models.py
│ ├── models.pyc
│ ├── templates
│ │ └── login
│ │ ├── auto_test.html
│ │ ├── baidumap.html
│ │ ├── base.html
│ │ ├── blog.html
│ │ ├── blogshow.html
│ │ ├── download_file.html
│ │ ├── editor.html
│ │ ├── index.html
│ │ ├── login.html
│ │ ├── pic_show.html
│ │ ├── register.html
│ │ ├── result
│ │ │ ├── 2018-10-11 17_18_55_result.html
│ │ │ ├── 2018-10-11 17_28_20_result.html
│ │ │ ├── 2018-10-11 17_30_00_result.html
│ │ │ ├── 2018-10-11 17_53_41_result.html
│ │ │ ├── 2018-10-11 17_56_31_result.html
│ │ │ ├── 2018-10-11 18_00_07_result.html
│ │ │ ├── 2018-10-19 17_50_13_result.html
│ │ │ ├── 2018-10-22 14_16_54_result.html
│ │ │ └── 2018-10-22 14_20_20_result.html
│ │ └── show.html
│ ├── tests.py
│ ├── views.py
│ └── views.pyc
├── manage.py
├── mysite_login
│ ├── __init__.py
│ ├── __init__.pyc
│ ├── settings.py
│ ├── settings.pyc
│ ├── urls.py
│ ├── urls.pyc
│ ├── wsgi.py
│ └── wsgi.pyc
└── static
├── Auto_Test
│ └── src
│ ├── addTestCase.py
│ ├── addTestCase.pyc
│ ├── all_test.py
│ ├── common
│ │ ├── commonapp.py
│ │ ├── commonapp.pyc
│ │ ├── common.py
│ │ ├── common.pyc
│ │ ├── commonwechat.py
│ │ ├── commonwechat.pyc
│ │ ├── __init__.py
│ │ └── __init__.pyc
│ ├── HTMLTestRunner.py
│ ├── HTMLTestRunner.pyc
│ ├── interface.conf
│ ├── parametrizedTestCase.py
│ ├── parametrizedTestCase.pyc
│ ├── report
│ │ ├── 2018-08-21 14_09_36_result.html
│ │ ├── 2018-08-21 15_35_06_result.html
│ │ ├── 2018-08-21 15_49_02_result.html
│ │ ├── 2018-08-21 16_45_18_result.html
│ │ ├── 2018-08-29 19_55_14_result.html
│ │ ├── 2018-08-29 20_05_27_result.html
│ │ ├── 2018-08-29 20_15_16_result.html
│ │ ├── 2018-08-29 20_32_01_result.html
│ │ ├── 2018-10-11 15_48_13_result.html
│ │ ├── 2018-10-11 16_01_05_result.html
│ │ ├── 2018-10-11 16_20_07_result.html
│ │ ├── 2018-10-11 16_22_34_result.html
│ │ ├── 2018-10-11 16_52_46_result.html
│ │ ├── 2018-10-11 16_57_04_result.html
│ │ └── 2018-10-11 17_11_22_result.html
│ ├── result.xml
│ ├── test_A_terminal
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── test_terminal.py
│ │ └── test_terminal.pyc
│ ├── test_B_main
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── test_clear.py
│ │ ├── test_clear.pyc
│ │ ├── test_getConstant.py
│ │ ├── test_getConstant.pyc
│ │ ├── test_getSession.py
│ │ ├── test_getSession.pyc
│ │ ├── test_main.py
│ │ └── test_main.pyc
│ ├── test_case_mutual
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── test_MonitorPictureSetting.pyc
│ │ ├── test_personalSetting.pyc
│ │ ├── wait_MonitorPictureSetting.py
│ │ ├── wait_MonitorPictureSetting.pyc
│ │ ├── wait_personalSetting.py
│ │ └── wait_personalSetting.pyc
│ ├── test_C_single
│ │ ├── ExtendDevice
│ │ │ ├── getDeviceInfo.py
│ │ │ ├── getDeviceInfo.pyc
│ │ │ ├── __init__.py
│ │ │ └── __init__.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── Monitoring
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── test_messages.py
│ │ │ ├── test_messages.pyc
│ │ │ ├── test_pictures.py
│ │ │ ├── test_pictures.pyc
│ │ │ ├── test_save_selects.py
│ │ │ ├── test_save_selects.pyc
│ │ │ ├── test_screens.py
│ │ │ └── test_screens.pyc
│ │ ├── MonitorPictureCurrent
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── test_current.py
│ │ │ └── test_current.pyc
│ │ ├── MonitorPictureHistory
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── test_getHistoryListInfo.py
│ │ │ ├── test_getHistoryListInfo.pyc
│ │ │ ├── test_getHistoryPhotoDateByScreenId.py
│ │ │ ├── test_getHistoryPhotoDateByScreenId.pyc
│ │ │ ├── test_getHistoryPhotoTimeByCameraId.py
│ │ │ └── test_getHistoryPhotoTimeByCameraId.pyc
│ │ ├── MonitorPictureSetting
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── test_cameraConfig.py
│ │ │ ├── test_cameraConfig.pyc
│ │ │ ├── test_cameraSetting.py
│ │ │ ├── test_cameraSetting.pyc
│ │ │ ├── test_cameras.py
│ │ │ ├── test_cameras.pyc
│ │ │ ├── test_checkCameraSet.py
│ │ │ ├── test_checkCameraSet.pyc
│ │ │ ├── test_clearMessage.py
│ │ │ ├── test_clearMessage.pyc
│ │ │ ├── test_clearSetting.py
│ │ │ ├── test_clearSetting.pyc
│ │ │ ├── test_detectionSetting.py
│ │ │ ├── test_detectionSetting.pyc
│ │ │ ├── test_enabledCameras.py
│ │ │ ├── test_enabledCameras.pyc
│ │ │ ├── test_enableSet.py
│ │ │ ├── test_enableSet.pyc
│ │ │ ├── test_nameSet.py
│ │ │ ├── test_nameSet.pyc
│ │ │ ├── test_order.py
│ │ │ └── test_order.pyc
│ │ ├── PersonalSetting
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── test_baseInfo.py
│ │ │ ├── test_baseInfo.pyc
│ │ │ ├── test_bindContactInfo.py
│ │ │ ├── test_bindContactInfo.pyc
│ │ │ ├── test_getUserInfo.py
│ │ │ ├── test_getUserInfo.pyc
│ │ │ ├── test_getVerifyCode.py
│ │ │ ├── test_getVerifyCode.pyc
│ │ │ ├── test_modifyPassword.py
│ │ │ ├── test_modifyPassword.pyc
│ │ │ ├── test_permissions.py
│ │ │ ├── test_permissions.pyc
│ │ │ ├── test_saveBaseInfo.py
│ │ │ └── test_saveBaseInfo.pyc
│ │ ├── RealTimeStatus
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── test_emailList.py
│ │ │ ├── test_emailList.pyc
│ │ │ ├── test_logList.py
│ │ │ ├── test_logList.pyc
│ │ │ ├── test_realTimeConfig.py
│ │ │ ├── test_realTimeConfig.pyc
│ │ │ ├── test_realTimeConfSet.py
│ │ │ ├── test_realTimeConfSet.pyc
│ │ │ ├── test_realTime.py
│ │ │ └── test_realTime.pyc
│ │ ├── Reports
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── test_periodicInspectionReports.py
│ │ │ └── test_periodicInspectionReports.pyc
│ │ ├── ScreenInfo
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── test_getScreenInfoBySid.py
│ │ │ ├── test_getScreenInfoBySid.pyc
│ │ │ ├── test_saveScreenAlarmConf.py
│ │ │ ├── test_saveScreenAlarmConf.pyc
│ │ │ ├── test_saveScreenInfo.py
│ │ │ └── test_saveScreenInfo.pyc
│ │ ├── ScreenList
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── test_deleteScreen.py
│ │ │ ├── test_deleteScreen.pyc
│ │ │ ├── test_getAllFilter.py
│ │ │ ├── test_getAllFilter.pyc
│ │ │ ├── test_getScreenList.py
│ │ │ └── test_getScreenList.pyc
│ │ └── SpotCheck
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── test_a_add.py
│ │ ├── test_a_add.pyc
│ │ ├── test_b_getInfoById.py
│ │ ├── test_b_getInfoById.pyc
│ │ ├── test_c_edit.py
│ │ ├── test_c_edit.pyc
│ │ ├── test_d_list.py
│ │ ├── test_d_list.pyc
│ │ ├── test_e_index.py
│ │ ├── test_e_index.pyc
│ │ ├── test_f_getInfoBySid.py
│ │ ├── test_f_getInfoBySid.pyc
│ │ ├── test_g_nameList.py
│ │ ├── test_g_nameList.pyc
│ │ ├── test_h_set.py
│ │ ├── test_h_set.pyc
│ │ ├── test_z_delete.py
│ │ └── test_z_delete.pyc
│ ├── test_D_app
│ │ ├── CameraImage
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── test_CameraImage.py
│ │ │ └── test_CameraImage.pyc
│ │ ├── CameraThumbnail
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── test_CameraThumbnail.py
│ │ │ └── test_CameraThumbnail.pyc
│ │ ├── CheckPhone
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── test_CheckPhone.py
│ │ │ └── test_CheckPhone.pyc
│ │ ├── CheckUserName
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── test_CheckUserName.py
│ │ │ └── test_CheckUserName.pyc
│ │ ├── Detect
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── test_Detect.py
│ │ │ └── test_Detect.pyc
│ │ ├── Image
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── test_Image.py
│ │ │ └── test_Image.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── Label
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── test_Label.py
│ │ │ └── test_Label.pyc
│ │ ├── Login
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── test_Login.py
│ │ │ └── test_Login.pyc
│ │ ├── MonitorData
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── test_MonitorData.py
│ │ │ └── test_MonitorData.pyc
│ │ ├── Register
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── test_Register.py
│ │ │ └── test_Register.pyc
│ │ ├── Send
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── test_Send.py
│ │ │ └── test_Send.pyc
│ │ ├── test_app.py
│ │ ├── Thumbnail
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── test_Thumbnail.py
│ │ │ └── test_Thumbnail.pyc
│ │ └── UserScreen
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── test_UserScreen.py
│ │ └── test_UserScreen.pyc
│ ├── test_E_wechat
│ │ ├── AddImg
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── test_AddImg.py
│ │ │ └── test_AddImg.pyc
│ │ ├── clickLogin
│ │ │ ├── __init__.py
│ │ │ └── test_clickLogin.py
│ │ ├── Detail
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── test_Detail.py
│ │ │ └── test_Detail.pyc
│ │ ├── feedback
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── test_feedback.py
│ │ │ └── test_feedback.pyc
│ │ ├── GetJsParam
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── test_GetJsParam.py
│ │ │ └── test_GetJsParam.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── loginCheck
│ │ │ ├── __init__.py
│ │ │ └── test_loginCheck.py
│ │ └── WechatCreate
│ │ ├── __init__.py
│ │ └── test_WechatCreate.py
│ └── tools
│ ├── __init__.py
│ ├── __init__.pyc
│ ├── readCSVFile.pyc
│ ├── tools.py
│ └── tools.pyc
├── bootstrap-3.3.7-dist
│ ├── css
│ │ ├── bootstrap.css
│ │ ├── bootstrap.css.map
│ │ ├── bootstrap.min.css
│ │ ├── bootstrap.min.css.map
│ │ ├── bootstrap-theme.css
│ │ ├── bootstrap-theme.css.map
│ │ ├── bootstrap-theme.min.css
│ │ └── bootstrap-theme.min.css.map
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
│ └── js
│ ├── bootstrap.js
│ ├── bootstrap.min.js
│ └── npm.js
├── CSS
│ └── login.css
├── js
│ ├── jquery-3.2.1
│ │ ├── jquery-3.2.1.js
│ │ ├── jquery-3.2.1.min.js
│ │ ├── jquery插件库.url
│ │ └── www.jq22.com.txt
│ ├── jquery-3.2.1.js
│ └── jquery-3.2.1.min.js
├── media
│ └── login
│ ├── 4K123 (12).jpg
│ ├── 4K123 (7).jpg
│ ├── CAJVieweru.exe
│ ├── 公共资源组.png
│ ├── 微信接口补全.txt
│ └── 用户日志表.xls
├── new.py
└── tiny_mce
└── tiny_mce.js
60 directories, 342 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论