溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Django中如何使用Validators校驗(yàn)組件

發(fā)布時(shí)間:2021-07-30 16:05:08 來源:億速云 閱讀:137 作者:Leah 欄目:大數(shù)據(jù)

Django中如何使用Validators校驗(yàn)組件,針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡(jiǎn)單易行的方法。

使用form組件實(shí)現(xiàn)注冊(cè)功能的例子

  1. 先定義好一個(gè)RegForm類

from django import forms

# 按照Django form組件的要求自己寫一個(gè)類
class RegForm(forms.Form):
    name = forms.CharField(label="用戶名")
    pwd = forms.CharField(label="密碼")
  1. 再寫一個(gè)視圖函數(shù)

# 使用form組件實(shí)現(xiàn)注冊(cè)方式
def register2(request):
    form_obj = RegForm()
    if request.method == "POST":
        # 實(shí)例化form對(duì)象的時(shí)候,把post提交過來的數(shù)據(jù)直接傳進(jìn)去
        form_obj = RegForm(request.POST)
        # 調(diào)用form_obj校驗(yàn)數(shù)據(jù)的方法
        if form_obj.is_valid():
            return HttpResponse("注冊(cè)成功")
    return render(request, "register2.html", {"form_obj": form_obj})
  1. html使用form

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>注冊(cè)2</title>
</head>
<body>
    <form action="/reg2/" method="post" novalidate autocomplete="off">
        {% csrf_token %}
        <div>
            <label for="{{ form_obj.name.id_for_label }}">{{ form_obj.name.label }}</label>
            {{ form_obj.name }} {{ form_obj.name.errors.0 }}
        </div>
        <div>
            <label for="{{ form_obj.pwd.id_for_label }}">{{ form_obj.pwd.label }}</label>
            {{ form_obj.pwd }} {{ form_obj.pwd.errors.0 }}
        </div>
        <div>
            <input type="submit" class="btn btn-success" value="注冊(cè)">
        </div>
    </form>
</body>
</html>

常用字段與插件

initial屬性-input框里面的初始值

class LoginForm(forms.Form):
    username = forms.CharField(
        min_length=8,
        label="用戶名",
        initial="張三"  # 設(shè)置默認(rèn)值
    )
    pwd = forms.CharField(min_length=6, label="密碼")

error_messages-重寫錯(cuò)誤信息

class LoginForm(forms.Form):
    username = forms.CharField(
        min_length=8,
        label="用戶名",
        initial="張三",
        error_messages={
            "required": "不能為空",
            "invalid": "格式錯(cuò)誤",
            "min_length": "用戶名最短8位"
        }
    )
    pwd = forms.CharField(min_length=6, label="密碼")

password插件

使得插件需統(tǒng)一引入: from django.forms import widgets

class LoginForm(forms.Form):
    ...
    pwd = forms.CharField(
        min_length=6,
        label="密碼",
        widget=forms.widgets.PasswordInput(attrs={'class': 'c1'}, render_value=True)
    )

radioSelect組件

class LoginForm(forms.Form):
    username = forms.CharField(
        min_length=8,
        label="用戶名",
        initial="張三",
        error_messages={
            "required": "不能為空",
            "invalid": "格式錯(cuò)誤",
            "min_length": "用戶名最短8位"
        }
    )
    pwd = forms.CharField(min_length=6, label="密碼")
    gender = forms.fields.ChoiceField(
        choices=((1, "男"), (2, "女"), (3, "保密")),
        label="性別",
        initial=3,
        widget=forms.widgets.RadioSelect()
    )

單選Select組件

class LoginForm(forms.Form):
    ...
    hobby = forms.fields.ChoiceField(
        choices=((1, "籃球"), (2, "足球"), (3, "雙色球"), ),
        label="愛好",
        initial=3,
        widget=forms.widgets.Select()
    )

多選Select組件

class LoginForm(forms.Form):
    ...
    hobby = forms.fields.MultipleChoiceField(
        choices=((1, "籃球"), (2, "足球"), (3, "雙色球"), ),
        label="愛好",
        initial=[1, 3],
        widget=forms.widgets.SelectMultiple()
    )

單選checkbox組件

class LoginForm(forms.Form):
    ...
    keep = forms.fields.ChoiceField(
        label="是否記住密碼",
        initial="checked",
        widget=forms.widgets.CheckboxInput()
    )

多選checkbox組件

class LoginForm(forms.Form):
    ...
    hobby = forms.fields.MultipleChoiceField(
        choices=((1, "籃球"), (2, "足球"), (3, "雙色球"),),
        label="愛好",
        initial=[1, 3],
        widget=forms.widgets.CheckboxSelectMultiple()
    )
  • 關(guān)于choice的注意事項(xiàng)

在使用選擇標(biāo)簽時(shí),需要注意choices的選項(xiàng)可以從數(shù)據(jù)庫中獲取,但是由于是靜態(tài)字段 獲取的值無法實(shí)時(shí)更新,那么需要自定義構(gòu)造方法從而達(dá)到此目的

from django.forms import Form
from django.forms import widgets
from django.forms import fields

class MyForm(Form):
    user = fields.ChoiceField(
        # choices=((1, '上海'), (2, '北京'),),
        initial=2,
        widget=widgets.Select
    )

    def __init__(self, *args, **kwargs):
        super(MyForm,self).__init__(*args, **kwargs)
        # self.fields['user'].choices = ((1, '上海'), (2, '北京'),)
        # 或
        self.fields['user'].choices = models.Classes.objects.all().values_list('id','caption')

Django Form所有內(nèi)置字段

Field
    required=True,               是否允許為空
    widget=None,                 HTML插件
    label=None,                  用于生成Label標(biāo)簽或顯示內(nèi)容
    initial=None,                初始值
    help_text='',                幫助信息(在標(biāo)簽旁邊顯示)
    error_messages=None,         錯(cuò)誤信息 {'required': '不能為空', 'invalid': '格式錯(cuò)誤'}
    validators=[],               自定義驗(yàn)證規(guī)則
    localize=False,              是否支持本地化
    disabled=False,              是否可以編輯
    label_suffix=None            Label內(nèi)容后綴
 
 
CharField(Field)
    max_length=None,             最大長度
    min_length=None,             最小長度
    strip=True                   是否移除用戶輸入空白
 
IntegerField(Field)
    max_value=None,              最大值
    min_value=None,              最小值
 
FloatField(IntegerField)
    ...
 
DecimalField(IntegerField)
    max_value=None,              最大值
    min_value=None,              最小值
    max_digits=None,             總長度
    decimal_places=None,         小數(shù)位長度
 
BaseTemporalField(Field)
    input_formats=None          時(shí)間格式化   
 
DateField(BaseTemporalField)    格式:2015-09-01
TimeField(BaseTemporalField)    格式:11:12
DateTimeField(BaseTemporalField)格式:2015-09-01 11:12
 
DurationField(Field)            時(shí)間間隔:%d %H:%M:%S.%f
    ...
 
RegexField(CharField)
    regex,                      自定制正則表達(dá)式
    max_length=None,            最大長度
    min_length=None,            最小長度
    error_message=None,         忽略,錯(cuò)誤信息使用 error_messages={'invalid': '...'}
 
EmailField(CharField)      
    ...
 
FileField(Field)
    allow_empty_file=False     是否允許空文件
 
ImageField(FileField)      
    ...
    注:需要PIL模塊,pip3 install Pillow
    以上兩個(gè)字典使用時(shí),需要注意兩點(diǎn):
        - form表單中 enctype="multipart/form-data"
        - view函數(shù)中 obj = MyForm(request.POST, request.FILES)
 
URLField(Field)
    ...
 
 
BooleanField(Field)  
    ...
 
NullBooleanField(BooleanField)
    ...
 
ChoiceField(Field)
    ...
    choices=(),                選項(xiàng),如:choices = ((0,'上海'),(1,'北京'),)
    required=True,             是否必填
    widget=None,               插件,默認(rèn)select插件
    label=None,                Label內(nèi)容
    initial=None,              初始值
    help_text='',              幫助提示
 
 
ModelChoiceField(ChoiceField)
    ...                        django.forms.models.ModelChoiceField
    queryset,                  # 查詢數(shù)據(jù)庫中的數(shù)據(jù)
    empty_label="---------",   # 默認(rèn)空顯示內(nèi)容
    to_field_name=None,        # HTML中value的值對(duì)應(yīng)的字段
    limit_choices_to=None      # ModelForm中對(duì)queryset二次篩選
     
ModelMultipleChoiceField(ModelChoiceField)
    ...                        django.forms.models.ModelMultipleChoiceField
 
 
     
TypedChoiceField(ChoiceField)
    coerce = lambda val: val   對(duì)選中的值進(jìn)行一次轉(zhuǎn)換
    empty_value= ''            空值的默認(rèn)值
 
MultipleChoiceField(ChoiceField)
    ...
 
TypedMultipleChoiceField(MultipleChoiceField)
    coerce = lambda val: val   對(duì)選中的每一個(gè)值進(jìn)行一次轉(zhuǎn)換
    empty_value= ''            空值的默認(rèn)值
 
ComboField(Field)
    fields=()                  使用多個(gè)驗(yàn)證,如下:即驗(yàn)證最大長度20,又驗(yàn)證郵箱格式
                               fields.ComboField(fields=[fields.CharField(max_length=20), fields.EmailField(),])
 
MultiValueField(Field)
    PS: 抽象類,子類中可以實(shí)現(xiàn)聚合多個(gè)字典去匹配一個(gè)值,要配合MultiWidget使用
 
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']
 
FilePathField(ChoiceField)     文件選項(xiàng),目錄下文件顯示在頁面中
    path,                      文件夾路徑
    match=None,                正則匹配
    recursive=False,           遞歸下面的文件夾
    allow_files=True,          允許文件
    allow_folders=False,       允許文件夾
    required=True,
    widget=None,
    label=None,
    initial=None,
    help_text=''
 
GenericIPAddressField
    protocol='both',           both,ipv4,ipv6支持的IP格式
    unpack_ipv4=False          解析ipv4地址,如果是::ffff:192.0.2.1時(shí)候,可解析為192.0.2.1, PS:protocol必須為both才能啟用
 
SlugField(CharField)           數(shù)字,字母,下劃線,減號(hào)(連字符)
    ...
 
UUIDField(CharField)           uuid類型

Validators校驗(yàn)組件

方式一

from django.forms import Form
from django.forms import widgets
from django.forms import fields
from django.core.validators import RegexValidator
 
class MyForm(Form):
    user = fields.CharField(
        validators=[RegexValidator(r'^[0-9]+$', '請(qǐng)輸入數(shù)字'), RegexValidator(r'^159[0-9]+$', '數(shù)字必須以159開頭')],
    )

方式二

import re
from django.forms import Form
from django.forms import widgets
from django.forms import fields
from django.core.exceptions import ValidationError


# 自定義驗(yàn)證規(guī)則
def mobile_validate(value):
    mobile_re = re.compile(r'^(13[0-9]|15[012356789]|17[678]|18[0-9]|14[57])[0-9]{8}$')
    if not mobile_re.match(value):
        raise ValidationError('手機(jī)號(hào)碼格式錯(cuò)誤')

class PublishForm(Form):

    title = fields.CharField(max_length=20,
                            min_length=5,
                            error_messages={'required': '標(biāo)題不能為空',
                                            'min_length': '標(biāo)題最少為5個(gè)字符',
                                            'max_length': '標(biāo)題最多為20個(gè)字符'},
                            widget=widgets.TextInput(attrs={'class': "form-control",
                                                          'placeholder': '標(biāo)題5-20個(gè)字符'}))

    # 使用自定義驗(yàn)證規(guī)則
    phone = fields.CharField(validators=[mobile_validate, ],
                            error_messages={'required': '手機(jī)不能為空'},
                            widget=widgets.TextInput(attrs={'class': "form-control",
                                                          'placeholder': u'手機(jī)號(hào)碼'}))

    email = fields.EmailField(required=False,
                            error_messages={'required': u'郵箱不能為空','invalid': u'郵箱格式錯(cuò)誤'},
                            widget=widgets.TextInput(attrs={'class': "form-control", 'placeholder': u'郵箱'}))

補(bǔ)充進(jìn)階

form組件應(yīng)用Bootstrap樣式

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="x-ua-compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="/static/bootstrap/css/bootstrap.min.css">
  <title>login</title>
</head>
<body>
<div class="container">
  <div class="row">
    <form action="/login2/" method="post" novalidate class="form-horizontal">
      {% csrf_token %}
      <div class="form-group">
        <label for="{{ form_obj.username.id_for_label }}"
               class="col-md-2 control-label">{{ form_obj.username.label }}</label>
        <div class="col-md-10">
          {{ form_obj.username }}
          <span class="help-block">{{ form_obj.username.errors.0 }}</span>
        </div>
      </div>
      <div class="form-group">
        <label for="{{ form_obj.pwd.id_for_label }}" class="col-md-2 control-label">{{ form_obj.pwd.label }}</label>
        <div class="col-md-10">
          {{ form_obj.pwd }}
          <span class="help-block">{{ form_obj.pwd.errors.0 }}</span>
        </div>
      </div>
      <div class="form-group">
      <label class="col-md-2 control-label">{{ form_obj.gender.label }}</label>
        <div class="col-md-10">
          <div class="radio">
            {% for radio in form_obj.gender %}
              <label for="{{ radio.id_for_label }}">
                {{ radio.tag }}{{ radio.choice_label }}
              </label>
            {% endfor %}
          </div>
        </div>
      </div>
      <div class="form-group">
        <div class="col-md-offset-2 col-md-10">
          <button type="submit" class="btn btn-default">注冊(cè)</button>
        </div>
      </div>
    </form>
  </div>
</div>

<script src="/static/jquery-3.2.1.min.js"></script>
<script src="/static/bootstrap/js/bootstrap.min.js"></script>
</body>
</html>

ModelForm - form與model的終極結(jié)合

class BookForm(forms.ModelForm):

    class Meta:
        model = models.Book
        fields = "__all__"
        labels = {
            "title": "書名",
            "price": "價(jià)格"
        }
        widgets = {
            "password": forms.widgets.PasswordInput(attrs={"class": "c1"}),
        }
  • class Meta下常用參數(shù)

model = models.Student  # 對(duì)應(yīng)的Model中的類
fields = "__all__"  # 字段,如果是__all__,就是表示列出所有的字段
exclude = None  # 排除的字段
labels = None  # 提示信息
help_texts = None  # 幫助提示信息
widgets = None  # 自定義插件
error_messages = None  # 自定義錯(cuò)誤信息

Form組件知識(shí)點(diǎn)總結(jié)

1. 定義Form

form django import forms

class RegForm(forms.Form):
    username = forms.CharField()
    pwd = forms.CharField()

2. 使用Form

視圖函數(shù)

from app01.forms import *

form_obj = RegForm()

return render(request,'reg.html',{'form_obj':form_obj})

form_obj = RegForm(request.POST)

form_obj.is_valid()     —— 》布爾值

form_obj.cleaned_data   ——》 {}    所有通過校驗(yàn)的字段的名字和值

模板

{{ form_obj.as_p  }}            ——》生成所有的字段  p  label input框

{{ form_obj.username }}         ——》 生成某個(gè)字段的對(duì)應(yīng)的input標(biāo)簽
{{ form_obj.username.label }}   ——》 生成某個(gè)字段的標(biāo)簽名  
{{ form_obj.username.id_for_label }}    ——》 生成某個(gè)字段id
{{ form_obj.username.errors }}  ——》 生成某個(gè)字段的所有的錯(cuò)誤信息  
{{ form_obj.username.errors.0 }}  ——》 生成某個(gè)字段的第一個(gè)的錯(cuò)誤信息  

{{ form_obj.errors }}           ——》 生成某form表單的所有的錯(cuò)誤信息

字段類型和參數(shù)

  1. 字段類型

     CharField()
     ChoiceField()


  2. 參數(shù)

     label        中文的提示
     initial      初始值
     min_length   最小長度
     max_length   最大長度
     required     是否是必填的
     disabled     是否不可修改
     error_messages = {
     'min_length' : '太短了',
     'max_length' : '夠長了'
     'required':   '不能為空'
     }
     validators = [ 校驗(yàn)器1,校驗(yàn)器2 ]


  3. 校驗(yàn)

  • 內(nèi)置的校驗(yàn)

      min_length   最小長度
      max_length   最大長度
      required     是否是必填的


  • 自定義校驗(yàn)器

      from django.core.validators import RegexValidator
      RegexValidator(正則,錯(cuò)誤提示)


    函數(shù)

      from django.core.exceptions import ValidationError
    
      def check_name(value):
      	if 'alex' in value:
      		raise ValidationError('不符合社會(huì)主義核心價(jià)值觀')


  1. 鉤子

    局部鉤子

     def clean_字段名(self):
     	通過校驗(yàn):返回當(dāng)前的字段的值
     	不通過:  raise ValidationError()


    全局鉤子

     def clean(self):
     	通過校驗(yàn): 返回self.cleaned_data
     	不通過:
     		self.add_error('字段名',’錯(cuò)誤提示‘)
     		raise ValidationError()


關(guān)于Django中如何使用Validators校驗(yàn)組件問題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識(shí)。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI