Django项目概述(1)

     上次安装好了环境,最近都在练习Django框架试着搭建一个图书管理小项目,django-1.8.2.tar.gz跟这次项目一起放在github上,地址在文末自取。

      在django中,项目的组织结构为一个项目包含多个应用,一个应用对应一个业务模块

     这次项目也是基于MVT模型:

    一、M模型类

     1.在Model.py中定义模型类

     2.生成迁移

     3.执行迁移

    二、注册admin

    1.创建超级管理员

    2.注册模型类

    3.登录后台管理数据

    三、V视图层

     1.在view.py中定义视图

     2.配置url

   四、T模版

   1.配置setting.py

   2.创建目录及文件

   3.编辑模版文件

   4.在视图中调用


github:https://github.com/xiangzi0829/djangoTest1.git

https://github.com/xiangzi0829/djangoTest1.git
https://github.com/xiangzi0829/djangoTest1.git
https://github.com/xiangzi0829/djangoTest1.git
https://github.com/xiangzi0829/djangoTest1.git
https://github.com/xiangzi0829/djangoTest1.git
https://github.com/xiangzi0829/djangoTest1.git
https://github.com/xiangzi0829/djangoTest1.git
发布了15 篇原创文章 · 获赞 3 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/edward_2017/article/details/79789436