Django-mtv开发模式

时间:2021-12-27 06:38:00

从著名的MVC模式开始说起

所谓的MVC就是把Web应用分为模型(M)控制器(C)和视图(V)三层,他们之间以一种插件式的、松耦合的房还是
连接在一起,模型负责业务对象与数据库的映射(ORM),视图负责与用户的交互页面(页面),控制器接受用户输入条
用模型和视图完成用户的请求,其示意图如下所示:

Django-mtv开发模式

django的MTV模式的本质和MVC是一样的,也是为了各组件间保持松耦合关系,只是定义有些不同,django的mtv分别是

  1. M 带包模型(Model) 负责业务对象和数据库的关系映射(ORM)
  2. T 代表模板(Template) 负责如何把页面展示给用户(html)
  3. V 代表视图 (View) 负责业务逻辑 并在适当时候调用Mode和Template
  4. 出了以上三层外,还需要一个URL分发器、他的作用是讲一个个URL的页面请求分发给不同的View处理,

View在调用相关的Mode和Template,MTV的相应模式如下所示:

Django-mtv开发模式

  1. web服务器(中间件)收到一个http请求
  2. Django在URLconf里查找对应的视图(view)函数来处理http请求
  3. 视图函数调用相应的数据模型来存储数据、调用相应的模板向用户展示页面
  4. 视图函数处理结束后返回一个http的相应给web服务器
  5. web 服务器将响应发送给客户端

这种设计模式关键的优势在与各种组都是松耦合的额,这样,每个有django驱动的web应用都有 着明确的目的,并且可独立更改而不影响其他的部分。 比如,开发者更改一个应用程序的URL而不用影响到这个程序底层的实现。设计师可以更改HTML页面 的样式而不用接触python代码 数据库管理员可以重新命名数据库表并且只需要更改模型,无需从一大堆文件中进行查找和替换。

落实到实处 django的MTV模式相对应的python文件如下:

Django-mtv开发模式

urls.py详解

URl分发器 (路由配置文件)

URL配置(URLconf)就像django所支持网站的目录。它在本质是URL模式以及要为改URL 模式调用的视图函数之间的映射表。你就是这种方式告诉django,对于这个URL嗲用这段代码, 对于那个URL调用那段代码,URL的加载时从配置文件中开始。

1. urlpatterns 的两种形式

没有前缀的情况,使用的列表(推荐方式) urlpatterns = [ url(r'^hello/$', views.hello), ] 有前缀的情况,使用patterns过时的方法方法

from django.conf.urls import url,patterns
from hello import views
urlpatterns = patterns('',url(r'^hello/$', views.hello))

from django.conf.urls import patterns
urlpatterns = patterns('hello',url(r'^hello/$', 'views.hello'),)

2. URL模式

urlpatterns =[
url(正则表方式,view函数,参数,别名,前缀)
]

参数说明:

  • 一个正则表达式字符串
  • 一个可调用对象,通常为一个视图函数或一个指定视图函数路径的字符串。
  • 可选的要传递给视图函数的默认参数(字典形式)
  • 一个可选的name参数
  • 路径前缀

3 URL 分解器 include函数

通常一个URL分解器对应一个URL配置模块,他可以包含多个url模式, 也可以包含多个其他URL分解器,通过这种包含结构设计,实现django对URL的层级解析。

URL分解器是django实现app与项目解耦的关键,通常include方法操作的url配置模块,最终 会被解释成URL分解器

预留的问题,为什么admin模块引入的时候没有使用include

url(r'^admin/', admin.site.urls),

URL常见写法示例 正则表达式

url(r'^test/\d{2}/$',views.test)
url(r'^test/(?P<id>\d{2})/$',views.test) ===>test(id)
url(r'^test2/(?P<id>\d{2})/(?P<key>\w+)/$',views.test) ==》test(id,key)

关于正则表达式的使用可以参考 建议爬虫实战中的正则表达式

*:first-child {
margin-top: 0 !important;
}

body>*:last-child {
margin-bottom: 0 !important;
}

/* BLOCKS
=============================================================================*/

p, blockquote, ul, ol, dl, table, pre {
margin: 15px 0;
}

/* HEADERS
=============================================================================*/

h1, h2, h3, h4, h5, h6 {
margin: 20px 0 10px;
padding: 0;
font-weight: bold;
-webkit-font-smoothing: antialiased;
}

h1 tt, h1 code, h2 tt, h2 code, h3 tt, h3 code, h4 tt, h4 code, h5 tt, h5 code, h6 tt, h6 code {
font-size: inherit;
}

h1 {
font-size: 28px;
color: #000;
}

h2 {
font-size: 24px;
border-bottom: 1px solid #ccc;
color: #000;
}

h3 {
font-size: 18px;
}

h4 {
font-size: 16px;
}

h5 {
font-size: 14px;
}

h6 {
color: #777;
font-size: 14px;
}

body>h2:first-child, body>h1:first-child, body>h1:first-child+h2, body>h3:first-child, body>h4:first-child, body>h5:first-child, body>h6:first-child {
margin-top: 0;
padding-top: 0;
}

a:first-child h1, a:first-child h2, a:first-child h3, a:first-child h4, a:first-child h5, a:first-child h6 {
margin-top: 0;
padding-top: 0;
}

h1+p, h2+p, h3+p, h4+p, h5+p, h6+p {
margin-top: 10px;
}

/* LINKS
=============================================================================*/

a {
color: #4183C4;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}

/* LISTS
=============================================================================*/

ul, ol {
padding-left: 30px;
}

ul li > :first-child,
ol li > :first-child,
ul li ul:first-of-type,
ol li ol:first-of-type,
ul li ol:first-of-type,
ol li ul:first-of-type {
margin-top: 0px;
}

ul ul, ul ol, ol ol, ol ul {
margin-bottom: 0;
}

dl {
padding: 0;
}

dl dt {
font-size: 14px;
font-weight: bold;
font-style: italic;
padding: 0;
margin: 15px 0 5px;
}

dl dt:first-child {
padding: 0;
}

dl dt>:first-child {
margin-top: 0px;
}

dl dt>:last-child {
margin-bottom: 0px;
}

dl dd {
margin: 0 0 15px;
padding: 0 15px;
}

dl dd>:first-child {
margin-top: 0px;
}

dl dd>:last-child {
margin-bottom: 0px;
}

/* CODE
=============================================================================*/

pre, code, tt {
font-size: 12px;
font-family: Consolas, "Liberation Mono", Courier, monospace;
}

code, tt {
margin: 0 0px;
padding: 0px 0px;
white-space: nowrap;
border: 1px solid #eaeaea;
background-color: #f8f8f8;
border-radius: 3px;
}

pre>code {
margin: 0;
padding: 0;
white-space: pre;
border: none;
background: transparent;
}

pre {
background-color: #f8f8f8;
border: 1px solid #ccc;
font-size: 13px;
line-height: 19px;
overflow: auto;
padding: 6px 10px;
border-radius: 3px;
}

pre code, pre tt {
background-color: transparent;
border: none;
}

kbd {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background-color: #DDDDDD;
background-image: linear-gradient(#F1F1F1, #DDDDDD);
background-repeat: repeat-x;
border-color: #DDDDDD #CCCCCC #CCCCCC #DDDDDD;
border-image: none;
border-radius: 2px 2px 2px 2px;
border-style: solid;
border-width: 1px;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
line-height: 10px;
padding: 1px 4px;
}

/* QUOTES
=============================================================================*/

blockquote {
border-left: 4px solid #DDD;
padding: 0 15px;
color: #777;
}

blockquote>:first-child {
margin-top: 0px;
}

blockquote>:last-child {
margin-bottom: 0px;
}

/* HORIZONTAL RULES
=============================================================================*/

hr {
clear: both;
margin: 15px 0;
height: 0px;
overflow: hidden;
border: none;
background: transparent;
border-bottom: 4px solid #ddd;
padding: 0;
}

/* TABLES
=============================================================================*/

table th {
font-weight: bold;
}

table th, table td {
border: 1px solid #ccc;
padding: 6px 13px;
}

table tr {
border-top: 1px solid #ccc;
background-color: #fff;
}

table tr:nth-child(2n) {
background-color: #f8f8f8;
}

/* IMAGES
=============================================================================*/

img {
max-width: 100%
}
-->