“”"
HttpResponse
返回字符串类型
render
返回html页面 并且在返回给浏览器之前还可以给html文件传值
redirect
重定向
“”"
return JsonResponse(user_dict,json_dumps_params={'ensure_ascii':False})
# return JsonResponse(l,safe=False)
# 默认只能序列化字典 序列化其他需要加safe参数
"""
form表单上传文件类型的数据
1.method必须指定成post
2.enctype必须换成formdata
"""
def ab_file(request):
if request.method == 'POST':
# print(request.POST) # 只能获取普通的简直对数据 文件不行
print(request.FILES) # 获取文件数据
file_obj = request.FILES.get('file') # 文件对象
print(file_obj.name)
with open(file_obj.name,'wb') as f:
for line in file_obj.chunks(): # 推荐加上chunks方法 其实跟不加是一样的都是一行行的读取
f.write(line)
return render(request,'form.html')
"""
request.method
request.POST
request.GET
request.FILES
request.body # 原生的浏览器发过来的二进制数据
request.path
request.path_info
request.get_full_path() 能过获取完整的url及问号后面的参数
"""
print(request.path) # /app01/ab_file/
print(request.path_info) # /app01/ab_file/
print(request.get_full_path()) # /app01/ab_file/?username=jason
CBV源码
@classonlymethod
def as_view(cls, **initkwargs):
"""
cls就是我们自己写的类
"""
def view(request, *args, **kwargs):
self = cls(**initkwargs) # cls是我们自己写的类
# self = MyLogin(**initkwargs) 产生一个我们自己写的类的对象
return self.dispatch(request, *args, **kwargs)
return view
# CBV的精髓
def dispatch(self, request, *args, **kwargs):
# 获取当前请求的小写格式 然后比对当前请求方式是否合法
if request.method.lower() in self.http_method_names:
handler = getattr(self,request.method.lower(),self.http_method_not_allowed)
"""
反射:通过字符串来操作对象的属性或者方法
handler = getattr(自己写的类产生的对象,'get',当找不到get属性或者方法的时候就会用第三个参数)
handler = 我们自己写的类里面的get方法
"""
else:
handler = self.http_method_not_allowed
return handler(request, *args, **kwargs)
"""
自动调用get方法
"""
CBV添加装饰器
需要先导入
from django.utils.decorators import method.decorator
# 第一种
class MyCBV(View):
def get(self,request):
return HttpResponse()
@method_decorator(login_auth)
def post(self,request):
return HttpResponse()
# 第二种
@method_decorator(login_auth,name='post')
@method_decorator(index_de,name='get')
class MyCBV(View):
def get(self,request):
return HttpResponse()
def post(self,request):
return HttpResponse()
# 第三种
class MyCBV(View):
@method_decorator(login_auth)
def dispatch(self,request,*args,**kwargs):
"""
看CBV源码可以得出 CBV里面所有的方法在执行之前都需要先经过
dispatch方法(该方法你可以看成是一个分发方法)
"""
super().dispatch(request,*args,**kwargs)
def get(self,request):
return HttpResponse()
def post(self,request):
return HttpResponse()
这里只补充几个点
1.当你传入的是个函数时,传递函数名会自动加括号调用 但是模版语法不支持给函数传额外的参数
2.传类名的时候也会自动加括号调用(实例化)
3.django模版语法的取值 是固定的格式 只能采用“句点符” (也就是说取列表中的值时可以使用.来取值例如llist.1)
基本语法:{{数据|过滤器:参数}}
统计长度:{{ s|length }}
默认值(第一个参数布尔值是True就展示第一个参数的值否在展示冒号后面的值):{{ b|default:'啥也不是' }}
文件大小:{{ file_size|filesizeformat }}
日期格式化:{{ current_time|date:'Y-m-d H:i:s' }}
切片操作(支持步长):{{ l|slice:'0:4:2' }}
切取字符(包含三个点):{{ info|truncatechars:9 }}
切取单词(不包含三个点 按照空格切):{{ egl|truncatewords:9 }}
移除特定的字符:{{ msg|cut:' ' }}
拼接操作:{{ l|join:'$' }}
拼接操作(加法):{{ n|add:10 }}
拼接操作(加法):{{ s|add:msg }}
在后端可以传输一个字符串类型的标签,但之后要通过转义才能被使用
转义:{{ hhh|safe }}
转义:{{ sss|safe }}
转义:{{ res }}
也可以直接在后端转义 from django.utils.safestring import mark_saferes = mark_safe(’< h1 >新新< /h1 >’)
# for循环
{% for foo in l %}
{{ forloop }}
{{ foo }}
一个个元素
{% endfor %}
{'parentloop': {}, 'counter0': 0, 'counter': 1, 'revcounter': 6, 'revcounter0': 5, 'first': True, 'last': False}
# if判断
{% if b %}
baby
{% elif s%}
都来把
{% else %}
老baby
{% endif %}
# for与if混合使用
{% for foo in lll %}
{% if forloop.first %}
这是我的第一次
{% elif forloop.last %}
这是最后一次啊
{% else %}
{{ foo }}
{% endif %}
{% empty %}
for循环的可迭代对象内部没有元素 根本没法循环
{% endfor %}
# 处理字典其他方法
{% for foo in d.keys %}
{{ foo }}
{% endfor %}
{% for foo in d.values %}
{{ foo }}
{% endfor %}
{% for foo in d.items %}
{{ foo }}
{% endfor %}
# with起别名
{% with d.hobby.3.info as nb %}
{{ nb }}
在with语法内就可以通过as后面的别名快速的使用到前面非常复杂获取数据的方式
{{ d.hobby.3.info }}
{% endwith %}
在自定义标签前需要先执行三步骤
1.在应用下创建一个名字”必须“叫templatetags文件夹
2.在该文件夹内创建“任意”名称的py文件
3.在该py文件内"必须"先书写下面两句话(单词一个都不能错)
from django import template
register = template.Library()
自定义过滤器
@register.filter(name=‘baby’)
def my_sum(v1, v2):
return v1 + v2
使用
{% load mytag %}
{{ n|baby:666 }}
自定义标签(参数可以有多个) 类似于自定义函数
@register.simple_tag(name=‘plus’)
def index(a,b,c,d):
return ‘%s-%s-%s-%s’%(a,b,c,d)
使用
标签多个参数彼此之间空格隔开
{% plus 'jason' 123 123 123 %}
自定义inclusion_tag
“”"
内部原理
先定义一个方法
在页面上调用该方法 并且可以传值
该方法会生成一些数据然后传递给一个html页面
之后将渲染好的结果放到调用的位置
“”"
@register.inclusion_tag(‘left_menu.html’)
def left(n):
data = [‘第{}项’.format(i) for i in range(n)]
# 第一种
# return {‘data’:data} # 将data传递给left_menu.html
# 第二种
return locals() # 将data传递给left_menu.html
{% left 5 %}
总结:当html页面某一个地方的页面需要传参数才能够动态的渲染出来,并且在多个页面上都需要使用到该局部 那么就考虑将该局部页面做成inclusion_tag形式
1.你自己先选好一个你要想继承的模版页面
{% extends ‘home.html’ %}
2.你需要在模版页面上提前划定可以被修改的区域
{% block content %}
模版内容
{% endblock %}
子页面就可以声明想要修改哪块划定了的区域
{% block content %}
子页面内容
{% endblock %}
“”"
将页面的某一个局部当成模块的形式
哪个地方需要就可以直接导入使用即可
“”"
{% include ‘wasai.html’ %}