Django 简介 Django 是 Python 语言的 Web 框架,开源且免费,可以用于满足快速开发网站的需求。 Django 接管了 Web 开发过程中的方方面面,所以开发者可以专注于编写应用程序,而不需要重
Django
简介
Django 是 Python 语言的 Web 框架,开源且免费,可以用于满足快速开发网站的需求。
Django 接管了 Web 开发过程中的方方面面,所以开发者可以专注于编写应用程序,而不需要重新造轮子。
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 pathfrom . import viewsurlpatterns = [ 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 renderdef 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 formsclass 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_requiredfrom django.shortcuts import renderdef my_protected_view(request): return render(request, 'protected.html', {'current_user': request.user })管理
Django 最强大的功能就是自动化的用户管理页面,从模型中读取元数据并提供一个用于生产化的界面保证内容管理。
from django.contrib import adminfrom bands.models import Band,Memberclass MemberAdmin(admin.ModelAdmin): list_display = ('name', 'instrument') list_filter = ('band', ) admin.site.register(Band) admin.site.register(Member, MemberAdmin)国际化
Django 支持文本国际化和格式化日期,时间,数字,时区。
from django.shortcuts import renderfrom django.utils.translation import gettextdef 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>