网站示例
wagtail
是一个用Python编写的免费开源 内容管理系统(CMS),在使用Django框架的网站中很流行
pdf文档下载
Django使您可以更轻松地以更少的代码更快地构建更好的Web应用程序
Django软件包是Django项目中可重复使用的应用程序,网站,工具等的目录https://djangopackages.org/
https://www.djangosites.org/
• GeoDjango: 定制的GIS Web框架
• Django Debug Toolbar:调试工具
• Django Easy Maps: 地图显示工具
• Django Haystack: 模块化搜索工具
https://www.djangosites.org/
• GeoDjango: 定制的GIS Web框架
• Django Debug Toolbar:调试工具
• Django Easy Maps: 地图显示工具
• Django Haystack: 模块化搜索工具
https://www.javatpoint.com/django-crud-application
https://data-flair.training/blogs/django-crud-example/
https://data-flair.training/blogs/django-crud-example/
To create a Django application that performs CRUD operations, follow the following steps.
1. Create a Project $ django-admin startproject crudexample
2. Create an App $ python3 manage.py startapp employee
3. Project Structure
4.Run the command to migrate the migrations.$ python3 manage.py migrate
5.Run Server To run server use the following command.$ python3 manage.py runserver
Access to the Browser Access the application by entering localhost:8000/show, it will show all the available employee records. Initially, there is no record.
Adding Record Click on the Add New Record button and fill the details.
This section also allows, update and delete records from the actions column. After saving couple of records, now we have following records.
Update Record Lets update the record of x by clicking on edit button. It will display record of x in edit mode.
Lets, suppose I update x to x kumar then click on the update button. It updates the record immediately. Click on update button and it redirects to the following page. See name is updated. Same like, we can delete records too, by clicking the delete link.
Delete Record Suppose, I want to delete x, it can be done easily by clicking the delete button.
对于ABC版本的Django,AB代表功能版本,C代表补丁版本
例如:Django version 2.1.3
2.1 is a number of feature release(功能版本)3 is a number of patch release(补丁版本)
LTS: Long-Term Support (长期支持)是软件开发中的著名标准。这意味着开发人员将在更长的时间内支持该版本的框架(对于Django,通常为3年或更长时间),您可以安全地将版本更新到较新的修补程序版本,而不必担心会破坏与源代码的兼容性
Django采用了MVT的软件设计模式,即模型(Model),视图(View)和模板(Template)
Model-View-Controller(MVC)的主要思想是将责任划分为三个部分。模型部分包含业务逻辑,视图代表应用程序,控制器管理两个逻辑之间的数据流
Model --> my_app/models.py
View --> my_app/templates/my_app/index.html
Controller --> my_app/views.py
在商店应用程序中,它可以是客户,产品和购买商品;在博客中,业务对象可以是作者,帖子和评论。
Django默认提供User 和 Group模型,来自django.contrib.auth.models
在cmd中创建虚拟环境
python -m venv web
激活虚拟环境
web\scripts\activate.bat
退出虚拟环境
deactivate
先安装django后创建项目
pip install django==3.0.2
要创建项目和第一个应用程序,请在命令行中运行以下命令
django-admin startproject magazine
cd magazine
django-admin startapp blog
mkdir blog\templates\blog
magazine/
├── blog
├── ...
├── models.py # Model
├── views.py # Controller
└── templates # View
└── blog
└── index.html
├── magazine
├── ...
└── urls.py # Controller
└── templates # View
└── base.html
为应用程序创建“templates”目录时
应将其命名为“<application name>/templates/<application name>”
你有 blog/templates/index.html and shop/templates/index.html 文件,其中blog和shop是项目中的应用程序。这种布局的主要缺陷是什么?
Django template loader返回找到的第一个"index.html" 。因此,您无法控制自己得到哪一个
# magazine\blog\templates\blog\index.html
<!DOCTYPE html>
<title>Movies</title>
<h1>Films by {{ director }}</h1>
<ul>
{% for movie in movies %}
<li>{{ movie.year }} - {{ movie.title }}</li>
{% endfor %}
</ul>
# magazine\blog\views.py
from django.conf import settings
from django.shortcuts import render
from django.views import View
movies = [
{
'title': 'Catchfire',
'year': 1990,
},
{
'title': 'Mighty Ducks the Movie: The First Face-Off',
'year': 1997,
},
{
'title': 'Le Zombi de Cap-Rouge',
'year': 1997,
},
]
class MovieView(View):
def get(self, request, *args, **kwargs):
return render(
request, 'blog/index.html', context={
'director': settings.DIRECTOR,
'movies': movies,
}
)
from django.shortcuts import render
from django.views import View
movies = [
{
'title': 'Catchfire',
'year': 1990,
},
{
'title': 'Mighty Ducks the Movie: The First Face-Off',
'year': 1997,
},
{
'title': 'Le Zombi de Cap-Rouge',
'year': 1997,
},
]
class MovieView(View):
def get(self, request, *args, **kwargs):
return render(
request, 'blog/index.html', context={
'director': settings.DIRECTOR,
'movies': movies,
}
)
# magazine\magazine\urls.py
from django.urls import path
from blog.views import MovieView
urlpatterns = [
path('', MovieView.as_view()),
]
from blog.views import MovieView
urlpatterns = [
path('', MovieView.as_view()),
]
# magazine\magazine\settings.py中修改INSTALLED_APPS变量添加变量DIRECTOR
INSTALLED_APPS = [
...
'blog',
]
'blog',
]
DIRECTOR = 'James'
在<project_name>/settings.py文件中,您仅定义Variables变量,而不编写任何函数或类
BASE_DIR --> The root of your project
INSTALLED_APPS --> All the applications you wish to use
DATABASES --> Configuration of databases
ALLOWED_HOSTS --> The hostnames for your server
开发服务器如果出现问题,您想显示回溯和其他有用信息。您可以DEBUG = True在settings.py模块中添加调试模式,生产服务器时,强烈建议设置DEBUG = False。
IS_RELEASE_SERVER = input().lower() == 'true'
DEBUG = not IS_RELEASE_SERVER
# 启动本地服务器
python manage.py runserver
等同于python manage.py runserver 8000
浏览器打开http://127.0.0.1:8000/
Controller由两种类型的文件组成:"views.py" and "urls.py".
在"urls.py"中,定义服务的路由。 Routing 是将请求链接与适当的视图处理程序进行匹配的过程
在"views.py"中定义了视图处理程序,它们在模型和视图之间扮演中介者的角色。一个视图处理程序是一个函数或一个类来响应请求。由于客户端和服务器之间的通信是HTTP协议的一种实现,因此处理程序将使用状态码进行回答
http状态码
让我们看看在有网站请求时它们如何交互。
#用户在视图中看到链接或按钮,然后按它并创建请求。1. A user sees a link or a button in a View, presses it and creates a request.
#控制器收到请求。
2. The Controller receives the request.
#它将请求传递给适当的处理程序。
3. It passes the request to the appropriate handler.
#处理程序调用Model方法从数据存储中检索对象。
4. The handler calls Model methods to retrieve objects from data storage.
#选择View模板以呈现响应。
5. It chooses the View template to render a response.
#用户看到响应。
6. A user sees a response.
每当我们创建模型,删除模型或更新我们项目的任何models.py中的任何内容时。我们需要运行两个命令
makemigrations
和migrate
。makemigrations基本上会为预安装的应用程序(可以在settings.py中的已安装应用程序中查看)和您在已安装的应用程序中添加的新创建的应用程序模型生成SQL命令,而migration会在数据库文件中执行这些SQL命令。
评论
发表评论