文件详情
查看文件信息和操作选项
文件信息
文件描述
├── 第1章 Django入门到进阶-更适合Python小白的系统课程 │ ├── 1.1.mp4 │ ├── 1.2.mp4 │ └── 1.3-1.4.mp4 ├── 第2章 Django中的路由与视图 │ ├── 2.1.mp4 │ ├── 2.2.mp4 │ ├── 2.3.mp4 │ ├── 2.4.mp4 │ ├── 2.5.mp4 │ ├── 2.6.mp4 │ └── 2.7.mp4 ├── 第3章 Django中的 Template 模板 │ ├── 3.1.mp4 │ ├── 3.2.mp4 │ ├── 3.3.mp4 │ ├── 3.4-.3.5.mp4 │ ├── 3.6.mp4 │ ├── 3.7.mp4 │ ├── 3.8.mp4 │ ├── 3.9.mp4 │ └── 3.10.mp4 ├── 第4章 Django中的ORM和数据库 │ ├── 4.1—4.5.mp4 │ ├── 4.6-4.7.mp4 │ ├── 4.8.mp4 │ ├── 4.9.mp4 │ ├── 4.10.mp4 │ ├── 4.11.mp4 │ └── 4.12.mp4 ├── 第5章 Django中的Form表单的使用 │ ├── 5.1.mp4 │ ├── 5.2-5.3.mp4 │ └── 5.4-5.5.mp4 ├── 第6章 Django中的Admin的基本使用 │ ├── 6.1.mp4 │ └── 6.2.mp4 ├── 第7章 Django中的用户权限的基本使用 │ ├── 7.1-7.2.mp4 │ ├── 7.3-7.4.mp4 │ ├── 7.5.mp4 │ ├── 7.6.mp4 │ ├── 7.7.mp4 │ ├── 7.9.mp4 │ └── 7.10.mp4 ├── 第8章 项目介绍 准备工作 │ ├── 8.1.mp4 │ ├── 8.2.mp4 │ └── 8.3.mp4 ├── 第9章 dashboard后端的搭建与开发 │ ├── 9.1-9.2.mp4 │ ├── 9.2.mp4 │ ├── 9.6-9.6.mp4 │ ├── 9.7-9.9.mp4 │ ├── 9.10-9.15.mp4 │ ├── 9.16.mp4 │ ├── 9.17.mp4 │ ├── 9.18.mp4 │ ├── 9.19.mp4 │ ├── 9.21.mp4 │ └── 9.22.mp4 ├── 第10章 移动客户端的搭建与开发 │ ├── 10.1.mp4 │ ├── 10.2.mp4 │ ├── 10.3—10.6.mp4 │ └── 10.7.mp4 ├── 第11章 服务部署 │ └── 11.1.mp4 └── 资料 ├── django-lession-test │ ├── lession1 │ │ ├── one │ │ │ ├── app │ │ │ │ ├── migrations │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── models.py │ │ │ │ ├── tests.py │ │ │ │ └── views.py │ │ │ ├── one │ │ │ │ ├── __init__.py │ │ │ │ ├── settings.py │ │ │ │ └── wsgi.py │ │ │ └── manage.py │ │ ├── 1.1web介绍与django初接触.pptx │ │ └── django的1.1介绍.pptx │ ├── lession2 │ │ ├── two │ │ │ ├── app │ │ │ │ ├── migrations │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── models.py │ │ │ │ ├── tests.py │ │ │ │ └── views.py │ │ │ ├── two │ │ │ │ ├── __init__.py │ │ │ │ ├── settings.py │ │ │ │ └── wsgi.py │ │ │ ├── db.sqlite3 │ │ │ └── manage.py │ │ ├── 01路由与视图介绍.pptx │ │ ├── 02路由器的参数设置.pptx │ │ ├── 03视图的详细讲解.pptx │ │ └── 04扩展知识.pptx │ ├── lession3 │ │ ├── jinja │ │ │ ├── app │ │ │ │ ├── migrations │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── base_jinja2.py │ │ │ │ ├── models.py │ │ │ │ ├── myfilter.py │ │ │ │ ├── tests.py │ │ │ │ └── views.py │ │ │ ├── jinja │ │ │ │ ├── __init__.py │ │ │ │ ├── settings.py │ │ │ │ └── wsgi.py │ │ │ ├── static │ │ │ │ └── test.css │ │ │ ├── templates │ │ │ │ ├── base.html │ │ │ │ └── test.html │ │ │ ├── db.sqlite3 │ │ │ └── manage.py │ │ ├── mako_project │ │ │ ├── app │ │ │ │ ├── migrations │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── base_render.py │ │ │ │ ├── models.py │ │ │ │ ├── tests.py │ │ │ │ └── views.py │ │ │ ├── mako_project │ │ │ │ ├── __init__.py │ │ │ │ ├── settings.py │ │ │ │ └── wsgi.py │ │ │ ├── static │ │ │ │ └── test.css │ │ │ ├── templates │ │ │ │ ├── base.html │ │ │ │ ├── extend.html │ │ │ │ └── test.html │ │ │ ├── db.sqlite3 │ │ │ └── manage.py │ │ ├── template │ │ │ ├── app │ │ │ │ ├── migrations │ │ │ │ ├── templatetags │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── base_jinja2.py │ │ │ │ ├── models.py │ │ │ │ ├── tests.py │ │ │ │ └── views.py │ │ │ ├── static │ │ │ │ └── index.css │ │ │ ├── template │ │ │ │ ├── __init__.py │ │ │ │ ├── settings.py │ │ │ │ └── wsgi.py │ │ │ ├── templates │ │ │ │ ├── base.html │ │ │ │ ├── index.html │ │ │ │ └── test.html │ │ │ ├── db.sqlite3 │ │ │ └── manage.py │ │ ├── 01template配置与views的绑定.pptx │ │ ├── 02模版内置标签.pptx │ │ ├── 03模版内置过滤器.pptx │ │ └── 04jinja2与mako模版.pptx │ ├── lession4 │ │ ├── one │ │ │ ├── app │ │ │ │ ├── migrations │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── models.py │ │ │ │ ├── mongo_engine.py │ │ │ │ ├── mongo_models.py │ │ │ │ ├── tests.py │ │ │ │ └── views.py │ │ │ ├── one │ │ │ │ ├── __init__.py │ │ │ │ ├── settings.py │ │ │ │ └── wsgi.py │ │ │ └── manage.py │ │ ├── 4-1orm与model基础.pptx │ │ ├── 4-2model中字段与属性介绍.pptx │ │ ├── 4-3数据库的表关系与联合索引的创建.pptx │ │ ├── 4-4数据库的增删改.pptx │ │ ├── 4-5数据库的查询.pptx │ │ ├── 4-6第三方的orm_sqlalchemy.pptx │ │ ├── 4-6sqlalchemy_test.py │ │ ├── 4-7redis在django中的使用.pptx │ │ └── 4-8mongodb在django中的使用.pptx │ ├── lession5 │ │ ├── form │ │ │ ├── app │ │ │ │ ├── migrations │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── forms.py │ │ │ │ ├── models.py │ │ │ │ ├── tests.py │ │ │ │ └── views.py │ │ │ ├── form │ │ │ │ ├── __init__.py │ │ │ │ ├── settings.py │ │ │ │ └── wsgi.py │ │ │ ├── templates │ │ │ │ └── regist.html │ │ │ ├── db.sqlite3 │ │ │ └── manage.py │ │ ├── 5-1form介绍与一个简单form的创建.pptx │ │ ├── 5-2django表单学习.pptx │ │ └── 5-3表单与模型.pptx │ ├── lession6 │ │ ├── 6-1admin后台管理.pptx │ │ └── 6-2admin的样式与功能开发.pptx │ ├── lession7 │ │ ├── user │ │ │ ├── app │ │ │ │ ├── migrations │ │ │ │ ├── __init__.py │ │ │ │ ├── admin.py │ │ │ │ ├── apps.py │ │ │ │ ├── models.py │ │ │ │ ├── tests.py │ │ │ │ └── views.py │ │ │ ├── templates │ │ │ │ ├── a.html │ │ │ │ ├── b.page.html │ │ │ │ ├── login.html │ │ │ │ └── regist.html │ │ │ ├── user │ │ │ │ ├── __init__.py │ │ │ │ ├── settings.py │ │ │ │ └── wsgi.py │ │ │ └── manage.py │ │ ├── 7-1.pptx │ │ └── 7.2权限分组cookie与session.pptx │ ├── lession8 │ │ ├── 8-1项目介绍与准备工作.pptx │ │ └── 8-10.pptx │ └── message_test │ ├── _idea │ │ ├── encodings.xml │ │ ├── message_test.iml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ ├── app │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_message_user.py │ │ │ └── __init__.py │ │ ├── pubsub │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── client.py │ │ │ └── server.py │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ └── custom.py │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── consts.py │ │ ├── forms.py │ │ ├── models.py │ │ ├── tests.py │ │ └── views.py │ ├── message_test │ │ ├── __init__.py │ │ ├── settings.py │ │ └── wsgi.py │ ├── templates │ │ ├── five.html │ │ ├── four_page_one.html │ │ ├── four_page_two.html │ │ ├── login.html │ │ ├── register.html │ │ └── three.html │ ├── db.sqlite3 │ ├── git.txt │ └── manage.py └── ppt ├── 1-1.pptx ├── 2-1.pptx ├── 2-2.pptx ├── 2-3.pptx ├── 2-4.pptx ├── 2-5.pptx ├── 3-1.pptx ├── 3-2.pptx ├── 3-4.pptx └── 3-6.pptx