什么是静态文件?
项目中的CSS、图片、js都是静态文件
# Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/1.11/howto/static-files/ # 用于隐藏(伪装),配置更改(逻辑显示路径) STATIC_URL = ‘/static/‘ # 静态文件的存放路径(真实路径) STATICFILES_DIRS = [ os.path.join(BASE_DIR, ‘static‘), ]
创建static文件夹,在这个文件夹下创建应用名的文件夹(类似模板的创建)
配置数据库,为了不用迁移,还是用以前的
DATABASES = { ‘default‘: { ‘ENGINE‘: ‘django.db.backends.mysql‘, ‘NAME‘: ‘test2‘, ‘USER‘:‘root‘, ‘PASSWORD‘:‘‘, ‘HOST‘:‘localhost‘, ‘POST‘:‘3306‘, } }
添加APP等操作就不提了
views.py
from django.shortcuts import render # Create your views here. def index(request): return render(request,‘booktest/index.html‘)
根urls.py
from django.conf.urls import url,include from django.contrib import admin urlpatterns = [ url(r‘^admin/‘, admin.site.urls), url(r‘^‘, include(‘booktest.urls‘)), ]
app中urls.py
from django.conf.urls import url,include from booktest import views urlpatterns = [ url(r‘^$‘, views.index), ]
index.html
{# 加载模块#} {% load static from staticfiles %} <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>index</title> </head> <body> {#直接通过硬编码写死的路径进行调用#} <img src="/static/booktest/a1.jpg" alt="图片1" height="300" width="500"> <br> {#类似反向解析,不要使用硬编码写死,跟上面效果一致,改了static_url 这个会跟着变#} <img src="{% static ‘booktest/a1.jpg‘ %}" alt="图片1" height="300" width="500"> </body> </html>
效果
默认创建项目settings.py中的文件,可以自己配置
作用:是一个轻量级、底层的插件系统,可以介入Django的请求和响应处理过程,修改Django的输入或输出
激活:添加到Django配置文件中的MIDDLEWARE_CLASSES元组中
面向切面编程Aspect Oriented Programming(AOP):针对业务处理过程中的切面进行提取,它所面对的是处理过程中的某个步骤或阶段,以获得逻辑过程中各部分之间低耦合性的隔离效果。
Django面向切面编程(类似,但也不全是)就是中间件
请求request→中间件1→url→中间键2→view→中间键3→Template→中间键4→返回response
Django本质:一个独立的python类,可以定义下面方法中的一个或多个
使用中间件,可以干扰整个处理过程,每次请求中都会执行中间件的这个方法
步骤
步骤一:写好类的方法(上述五种)
步骤二:将中间件注册在settings.py
演示:
在APP中创建一个MyException.py文件
from django.http import HttpResponse from django.utils.deprecation import MiddlewareMixin class MyException(MiddlewareMixin): def process_exception(self, request, exception): # 出现异常,返回异常响应信息 return HttpResponse(exception)
settings.py中注册
MIDDLEWARE = [ ‘booktest.MyException.MyException‘, ‘django.middleware.security.SecurityMiddleware‘, ‘django.contrib.sessions.middleware.SessionMiddleware‘, ‘django.middleware.common.CommonMiddleware‘, ‘django.middleware.csrf.CsrfViewMiddleware‘, ‘django.contrib.auth.middleware.AuthenticationMiddleware‘, ‘django.contrib.messages.middleware.MessageMiddleware‘, ‘django.middleware.clickjacking.XFrameOptionsMiddleware‘, ]
views.py(定义视图)
from django.http import HttpResponse
def myExp(request): # 故意定义错误 a1 = int(‘abc‘) return HttpResponse(‘hello‘)
urls.py
url(r‘^myexp$‘, views.myExp),
效果
需要依赖pillow包
settings.py
# 上传图片的存储路径 MEDIA_ROOT=os.path.join(BASE_DIR,"static/media")
在static中创建目录media存储上传文件
views.py
from django.shortcuts import render from django.http import HttpResponse from django.conf import settings import os # Create your views here. # 上传文件界面 def uploadPic(request): return render(request, ‘booktest/uploadPic.html‘) # 接受图片 def uploadHandle(request): if request.method == "POST": # 接收上传的图片 pic1 = request.FILES[‘pic1‘] # 名字:绝对路径(图片存储路径)+项目名+文件名 fname = os.path.join(settings.MEDIA_ROOT,pic1.name) with open(fname, ‘wb‘) as pic: # 一点一点读 for c in pic1.chunks(): # 一点一点写 pic.write(c) return HttpResponse("ok:%s<img src=‘/static/media/%s‘>"%(fname,fname)) else: return HttpResponse("error")
urls.py
url(r‘^uploadPic$‘, views.uploadPic), url(r‘^uploadHandle$‘, views.uploadHandle),
uploadPic.html
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>上传文件</title> </head> <body> {#提交的另一个视图#} <form action="/uploadHandle" method="post" enctype="multipart/form-data"> {% csrf_token %} <input type="file" name="pic1"><br> <hr> <input type="submit" value="上传"> </form> </body> </html>
效果
上传后
默认启动admin模块
使用方法:
步骤一:创建超级管理员
python manage.py createsuperuser
账号:root
邮箱:随便填
密码:123root123
步骤二:管理模型类
admin.py
from django.contrib import admin from django.db import models # Register your models here. class UesrInfo(models.Model): uname = models.CharField(max_length=10) upwd = models.CharField(max_length=40) isDelete = models.BooleanField()
注:需要在models.py中把文件模型先写好,一起生成迁移文件,迁移,单独迁移会存在问题
生成迁移文件----生成模型类相关SQL语句
python manage.py makemigrations
执行迁移----根据SQL语句生成相关表
python manage.py migrate
settings.py设置中文
LANGUAGE_CODE = ‘zh-Hans‘ TIME_ZONE = ‘Asia/Shanghai‘
注册admin.py
admin.site.register(BookInfo)
效果
admin.py(在前面入门的例子中有写)
from django.contrib import admin
from django.db import models
from .models import *
# 关联注册 (内部停靠), # class HeroInfoline(admin.StackedInline): # 表格效果 class HeroInfoline(admin.TabularInline): # 嵌入哪个类(一对多中,多的部分) model = HeroInfo # 增加一本图书的时候,还可以增加2个heroinfo extra = 2 class BookInfoAdmin(admin.ModelAdmin): # 列表页显示 # 列表 list_display = [‘id‘, ‘btitle‘, ‘bpub_date‘] # 过滤 list_filter = [‘btitle‘] # 搜索(支持模糊查询) search_fields = [‘btitle‘] # 分页(每页显示多少条) list_per_page = 10 # 添加页,修改页 # 展示列表fields 和 fieldsets只能同时存在一个,功能一致 # fields = [‘bpub_date‘,‘btitle‘] # 分组 fieldsets = [ (‘base‘, {‘fields‘: [‘btitle‘]}), (‘super‘, {‘fields‘: [‘bpub_date‘]}) ] # 关联注册第二步,关联起来(一对多中,一的部分) inlines = [HeroInfoline] # admin.site.register(BookInfo) # 注册 admin.site.register(BookInfo, BookInfoAdmin) admin.site.register(HeroInfo)
效果
可以使用装饰器注册(其实也一样)----只能在继承admin.ModelAdmin时使用装饰器
# admin.site.register(BookInfo, BookInfoAdmin) @admin.register(BookInfo) class BookInfoAdmin(admin.ModelAdmin):
属性
原文:https://www.cnblogs.com/shuimohei/p/10781126.html