Django 简介

时间:2022-12-16 14:58:00

Django

简介

Django 是 Python 语言的 Web 框架,开源且免费,可以用于满足快速开发网站的需求。

Django 接管了 Web 开发过程中的方方面面,所以开发者可以专注于编写应用程序,而不需要重新造*。

Django 的特点:

  1. 非常快
    Django 的设计就是为了帮助开发者快速开发网站。
  2. 功能丰富
    Django 能解决 Web 开发过程中常见的任务需求,包括用户认证,内容管理,网站地图,RSS 订阅等开箱即用功能。
  3. 安全
    Django 能避免很多安全问题,例如:SQL 注入,跨站点脚本,跨站请求伪造和点击注入等。
  4. 支持大规模网站
    如:Instagram,Mozilla
  5. 多样化
    公司、组织、*都是用 Django。

创建项目

django-admin startproject mysite

使用上述命令创建一个 Django 项目。

文件结构:

mysite/
manage.py
mysite/
__init__.py
settings.py
urls.py
asgi.py
wsgi.py

这些文件:

  • manage.py:命令行工具用于和项目进行交互
  • 外部 mysite:是文件的根目录,也是项目的容器,文件夹名可以更改
  • 内部 mysite:

ORM

ORM 即 object-relational mapper 对象关系映射。

使用 Python 定义数据模型,Django 提供丰富的数据库 API,也可以自己编写 SQL。

示例代码:

class Band(models.Model):
name = models.CharField(max_length=200)
can_rock = models.BooleanField(default=True)

class Member(models.Model):
name = models.CharField("Member's name", max_length=200)
instrument = models.CharField(choices=(
('g', "Guitar"),
('b', "Bass"),
('d', "Drums"),
),
max_length=1
)
band = models.ForeignKey("Band")

URL 和视图

Django 组织的 URL 都很整齐。

URL 通过创建一个 Python 模块(module)叫 URLconf,就像 app 的表格一样,它包含了 URL 规则和视图的映射。

示例代码:

from django.urls import path
from . import views

urlpatterns = [
path('bands/', view.band_listing, name='band-list').
path('band/<int:band_id>/', views.band_detail, name='band-detail'),
path('band/search/', view.band_search, name='band-search'),
]
from django.shortcuts import render

def band_listing(request):
bands = models.Band.objects.all()
return render(request, 'band/band_listing.html', {'bands': bands})

模板

Django 的模板语言被设计来平衡能力和便捷。

<html>
<head>
<title>Band Listing</title>
</head>
<body>
<h1>
All Bands
</h1>
<ul>
{% for band in bands %}
<li>
<h2>
<a href="{{band.get_absolute_url}}">{{band.name}}</a>
</h2>
{% if band.can_rock %}<p>
This band can rock!</p>{% endif %}
</li>
{% endfor %}
</ul>
</body>
</html>

表单

Django 提供了丰富的表单库去处理表单渲染,验证用户提交的数据,并把数据转化为 Python 类型。Django 也支持从现有模型生成表单并创建和更新数据。

from django import forms

class BandContactForm(forms.Form):
subject = forms.CharField(max_length=100)
message = form.CharField()
sender = form.EmailField()
cc_myself = forms.BooleanField(required=False)

认证

Django 自功能丰富的安全认证系统,处理用户账号,群组,权限以及基于 cookie 的用户 session。

from django.contrib.auth.decorators import login_required
from django.shortcuts import render

def my_protected_view(request):
return render(request, 'protected.html', {'current_user': request.user })

管理

Django 最强大的功能就是自动化的用户管理页面,从模型中读取元数据并提供一个用于生产化的界面保证内容管理。

from django.contrib import admin
from bands.models import Band,Member

class MemberAdmin(admin.ModelAdmin):
list_display = ('name', 'instrument')
list_filter = ('band', )
admin.site.register(Band)
admin.site.register(Member, MemberAdmin)

国际化

Django 支持文本国际化和格式化日期,时间,数字,时区。

from django.shortcuts import render
from django.utils.translation import gettext

def homepage(request):
message = gettext('welcome to our site')
return render(request, 'homepage.html', {'message': message})
{% load i18n %}
<html>
<head>
<title>{% trans 'Homepage - Hall of Fame' %}</title>
</head>
<body>
{# Translated in the view: #}
<h1>{{ message }}</h1>
<p>
{% blocktrans count member_count=bands.count %}
Here is the only band in the hall of fame:
{% plural %}
Here are all the {{ member_count }} bands in the hall of fame:
{% endblocktrans %}
</p>
<ul>
{% for band in bands %}
<li>
<h2><a href="{{ band.get_absolute_url }}">{{ band.name }}</a></h2>
{% if band.can_rock %}<p>{% trans 'This band can rock!' %}</p>{% endif %}
</li>
{% endfor %}
</ul>
</body>
</html>