django-forms组件
程序员文章站
2022-04-29 19:07:48
08.19自我总结 django forms组件 一.forms的作用 前端和后端都要校验 前端校验的目的:减少后台代码连接数据库的压力 用forms可以同时完成前端和后端同时校验且减少代码量 二.forms的基本使用: 1.定义数据的时候导入from类 2.字段通过fields进行导入 3.演示 ......
08.19自我总结
django-forms组件
一.forms的作用
- 前端和后端都要校验
- 前端校验的目的:减少后台代码连接数据库的压力
用forms可以同时完成前端和后端同时校验且减少代码量
二.forms的基本使用:
1.定义数据的时候导入from类
2.字段通过fields进行导入
3.演示
views.py
from django.forms import form from django.forms import fields class loginform(form): ### 全部都是验证的规则 username = fields.charfield( required=true, ### 不能为空 max_length=18, ### 最大的长度是18 min_length=6, ### 最小的长度是6 error_messages = { ### 对英文进行重写 "required" : "不能为空", "max_length":"太长了", "min_length":"太短了", } ) pwd = fields.charfield()
4.方法中对于传参进行定义
views.py
def login(request): if request.method == 'get': return render(request, "login.html") else: # username = request.post.get('username') # pwd = request.post.get('pwd') obj = loginform(request.post) ## {"username":'xx', 'pwd':'xx'} if obj.is_valid(): print(obj.cleaned_data) ## 对象 else: print(obj.errors) ### 对象 __str__ return render(request, "login.html", {'obj':obj})
5.html中对于返回值进行渲染
login.html
渲染方式一:
<form action="/login/" method="post"> username: <input type="text" name="username">{{ obj.errors.username.0 }}<br> password: <input type="password" name="pwd">{{ obj.errors.pwd.0 }}<br> <input type="submit" value="提交"><br> </form>
渲染方式二:
#前提标题由forms组件进行 {{obj.username}} #对于字段的input框 {{obj.as_p }}#对象的所有字段 {{obj.errors.username }}#对象的错误信息
三.forms组件所有参数
1.field
required=true, 是否允许为空 widget=none, html插件 label=none, 用于生成label标签或显示内容 initial=none, 初始值 help_text='', 帮助信息(在标签旁边显示) error_messages=none, 错误信息 {'required': '不能为空', 'invalid': '格式错误'} validators=[], 自定义验证规则 localize=false, 是否支持本地化 disabled=false, 是否可以编辑 label_suffix=none label内容后缀
2.charfield(field)
max_length=none, 最大长度 min_length=none, 最小长度 strip=true 是否移除用户输入空白
3.integerfield(field)
max_value=none, 最大值 min_value=none, 最小值
4.floatfield(integerfield)
max_value=none, 最大值 min_value=none, 最小值
5.decimalfield(integerfield)
max_value=none, 最大值 min_value=none, 最小值 max_digits=none, 总长度 decimal_places=none, 小数位长度
6.basetemporalfield(field)
input_formats=none 时间格式化
7.datefield(basetemporalfield)
格式:2015-09-01
8.timefield(basetemporalfield)
格式:11:12
9.datetimefield(basetemporalfield)
格式:2015-09-01 11:12
10.durationfield(field)
时间间隔:%d %h:%m:%s.%f
11.regexfield(charfield)
regex, 自定制正则表达式 max_length=none, 最大长度 min_length=none, 最小长度 error_message=none, 忽略,错误信息使用 error_messages={'invalid': '...'}
12.emailfield(charfield)
13.filefield(field)
allow_empty_file=false 是否允许空文件
14.imagefield(filefield)
注:需要pil模块,pip3 install pillow 以上两个字典使用时,需要注意两点: - form表单中 enctype="multipart/form-data" - view函数中 obj = myform(request.post, request.files)
15.urlfield(field)
16.booleanfield(field)
17.nullbooleanfield(booleanfield)
18.choicefield(field)
choices=(), 选项,如:choices = ((0,'上海'),(1,'北京'),) required=true, 是否必填 widget=none, 插件,默认select插件 label=none, label内容 initial=none, 初始值 help_text='', 帮助提示
19.modelchoicefield(choicefield)
... django.forms.models.modelchoicefield queryset, # 查询数据库中的数据 empty_label="---------", # 默认空显示内容 to_field_name=none, # html中value的值对应的字段 limit_choices_to=none # modelform中对queryset二次筛选
20.modelmultiplechoicefield(modelchoicefield)
... django.forms.models.modelmultiplechoicefield
21.typedchoicefield(choicefield)
coerce = lambda val: val 对选中的值进行一次转换 empty_value= '' 空值的默认值
22.multiplechoicefield(choicefield)
23.typedmultiplechoicefield(multiplechoicefield)
coerce = lambda val: val 对选中的每一个值进行一次转换 empty_value= '' 空值的默认值
24.combofield(field)
fields=() 使用多个验证,如下:即验证最大长度20,又验证邮箱格式 fields.combofield(fields=[fields.charfield(max_length=20), fields.emailfield(),])
25.multivaluefield(field)
ps: 抽象类,子类中可以实现聚合多个字典去匹配一个值,要配合multiwidget使用
26.splitdatetimefield(multivaluefield)
input_date_formats=none, 格式列表:['%y--%m--%d', '%m%d/%y', '%m/%d/%y'] input_time_formats=none 格式列表:['%h:%m:%s', '%h:%m:%s.%f', '%h:%m']
27.filepathfield(choicefield) 文件选项,目录下文件显示在页面中
path, 文件夹路径 match=none, 正则匹配 recursive=false, 递归下面的文件夹 allow_files=true, 允许文件 allow_folders=false, 允许文件夹 required=true, widget=none, label=none, initial=none, help_text=''
28.genericipaddressfield
protocol='both', both,ipv4,ipv6支持的ip格式 unpack_ipv4=false 解析ipv4地址,如果是::ffff:192.0.2.1时候,可解析为192.0.2.1, ps:protocol必须为both才能启用
29.slugfield(charfield)
数字,字母,下划线,减号(连字符)
30.uuidfield(charfield)
uuid类型
四.相关参数使用演示
from django.forms import form from django.forms import fields from django.forms import widget,passwordinput class loginform(form): username = fields.charfield( required=true, # label='用户名', # initial=666, # help_text='帮助信息', # # disabled=true, # label_suffix='--->', max_length=18, min_length=6, error_messages={ 'required' : '用户名不能为空', 'max_length': '用户名不能超过18', 'min_length': '用户名最小为6', } ) # password = fields.integerfield( # required=true, # max_value=99999999, # min_value=100000, # error_messages={ # 'required' : '密码不能为空', # 'invalid' : '格式不正确', # 'min_value': '密码最少六位', # 'max_value': '密码最多12位', # }, # # widget=passwordinput # ) email = fields.emailfield() def login(request): if request.method == 'get': obj = loginform() print(obj) return render(request, 'login.html', {'obj':obj}) else: # username = request.post.get('username') # print(username) obj = loginform(request.post) if obj.is_valid(): print(obj.cleaned_data) else: errors = obj.errors # <ul class="errorlist"> # <li>username # <ul class="errorlist"> # <li>this field is required.</li> # </ul> # </li> # </ul> # print(type(errors)) # print(errors) return render(request, 'login.html', {'obj' : obj})
上一篇: 解析网页的写法汇总