forms組件

 1、檢驗字段的功能

一、先寫一個類,繼承Form
from django.shortcuts import render, HttpResponse
from django import forms
    # 寫一個類,要校驗那些字段,就是類的屬性
class MyForm(forms.Form):
   # 定義屬性,
    name=forms.CharField(max_length=8,min_length=3)
    pwd=forms.CharField(max_length=8,min_length=3,required=True)
    email=forms.EmailField()
二、實例化產生對象,傳入要校驗的數據(字典)
def index_from(request):
    if request.method=='POST':
        myform=MyForm(request.POST)
            # is_valid判斷校驗是否成功,所有校驗經過爲True
        if myform.is_valid():
               # 將校驗經過的數據放到cleaned_data中
            print(myform.cleaned_data)
            return HttpResponse('校驗成功')
        else:
            print(myform.cleaned_data)
              #校驗失敗的信息放到errors中
            print(myform.errors)

#注意:校驗的字段,能夠多,可是不能少
#傳過來了四個字段,只檢驗三個字段,是能夠的,少傳的話就不行
# 可是能夠經過required=flase修改,是否必須傳

 

 

2、渲染標籤

class MyForm(forms.Form):
    name=forms.CharField(max_length=8,min_length=3,lable='用戶名',errors_messages={'max_length':'最長8位''min_length':最短3位)
    pwd=forms.CharField(max_length=8,min_length=3,required=True)
    email=forms.EmailField()
#若是不設置lable,前端顯示的lable是字段名name,
#不過不設置errors_messages,提示的錯誤信息,爲原生英文
def index_from(request):
    if request.method=='POST':
        myform=MyForm(request.POST)
        return render(request,'index.html',locals())

三種方式渲染模板

<form action="" method="post">
    {% csrf_token %}
    <div>
        <label for="user">用戶名</label>
        <p><input type="text" name="name" id="name"></p>
    </div>
    <div>
        <label for="pwd">密碼</label>
        <p><input type="password" name="pwd" id="pwd"></p>
    </div>
    <div>
        <label for="r_pwd">確認密碼</label>
        <p><input type="password" name="r_pwd" id="r_pwd"></p>
    </div>
     <div>
        <label for="email">郵箱</label>
        <p><input type="text" name="email" id="email"></p>
    </div>
    <input type="submit">
</form>
---------------------------------------------------------------------------------
#最開始是使用input標籤渲染,使用forms組件,自動渲染input標籤
方式一:經過後端傳的myform對象,經過點裏邊的屬性
<form action="" method="post" >
<p>用戶名: {{ myform.name }}</p>
<p>密碼: {{ myform.pwd }}</p>
<p>郵箱: {{ myform.email }}</p>
<input type="submit" value="提交">


#方式二,for循環後端傳過來的myform對象,拿到各個字段
<form action="" method="post" >
{% for foo in myform %}          #for循環取值
<p>{{ foo.label }}:{{ foo }}</p>     #lable不傳的話只有input框,沒有前面的提示
{% endfor %}
<input type="submit" value="提交">
</form>


#方式三,不建議使用,擴展性低,建議使用第三種
<form action="" method="post" >

{{ myform.as_p }}#}     #直接把各個字段放到p標籤
{{ myform.as_ul }}        #直接把各個字段放到ul列表
<input type="submit" value="提交">
</form>

展現報錯信息css

#展現報錯信息
    <form action="" method="post" novalidate>     #novalidate關閉前端驗證,通常不會使用
        {% for foo in form_obj %}
            <p>
                {{ foo.label }}{{ foo }}
                <span>{{ foo.errors.0 }}</span>   #foo.errors.0,沒有0時,系統默認是個ul的列表,會將反饋的錯誤信息,展現到input框下邊,而且前邊帶有ul標誌的點
            </p>                     #有0時會將錯誤信息展現到input框後邊,span標籤文本多大,佔多大,當error中沒有值時,爲空
        {% endfor %}
        <input type="submit">
    </form>
                        

 


3、局部鉤子與全局鉤子

#註冊的時候,數據庫中是否已經有該用戶名,或者用戶名中包含違法字段
#這時上邊的校驗方式沒法知足


from django.core.exceptions import ValidationError
from django.shortcuts import render, HttpResponse
from django import forms


# 局部鉤子(對某個字段添加限制時)  ,也是在建立的類下寫的
class MyForm(forms.Form):
    name=forms.CharField(max_length=8,min_length=3)
    pwd=forms.CharField(max_length=8,min_length=3,required=True)
    email=forms.EmailField()
    def clean_name(self):       #clean_字段名
        name = self.cleaned_data.get('name')   #取出字段
          if 'sb' in name:
          self.add_error('name','光喊666是不行的,得有操做!')
                # 局部鉤子中能夠手動添加報錯信息
                 raise ValidationError('光喊666是不行的,得有操做!')
                # 也能夠主動拋出異常
    return name   # 拿出來校驗的數據必須返回回去

# 全局鉤子(實際上是重寫clean方法)
  def clean(self):
    pwd = self.cleaned_data.get('pwd')
    conf_pwd = self.cleaned_data.get('confirm_pwd')
    if pwd == confirm_pwd:
    # 校驗事後必定要把cleaned_data再返回出來
      return self.cleaned_data
    else:
      #須要手動將報錯信息加入到errors裏面
       self.add_error('conf_pwd', '兩次密碼不一致')

#全局鉤子的錯誤信息在__all__
pwd_err=my_form.errors.get('__all__')
 

 



 

 

 

4、經常使用字段與插件

建立Form類時,主要涉及到字段和插件,字段用於請求數據的驗證,插件用於自動生成HTMLhtml

initial  (input框裏的初始值)前端

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

 

 

error_messages  (重寫錯誤信息,例如把錯誤提示改寫爲中文)jquery

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

 

 

PasswordInput  (爲密碼設置密文)(forms.PasswordInput)git

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

 

 

radioSelect  (單radio值爲字符串)正則表達式

class LoginForm(forms.Form): username = forms.CharField( min_length=8, label="用戶名", initial="張三", error_messages={ "required": "不能爲空", "invalid": "格式錯誤", "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() )
View Code

 

 

單選Select數據庫

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

 

 

多選Selectdjango

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

 

 

單選/多選checkboxbootstrap

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



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

 

 

choice字段注意事項後端

#在使用選擇標籤時,須要注意choices的選項能夠配置從數據庫中獲取,可是因爲是靜態字段 獲取的值沒法實時更新,須要重寫構造方法從而實現choice實時更新。

方式一
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')

方式二
from django import forms
from django.forms import fields
from django.forms import models as form_model

 
class FInfo(forms.Form):
    authors = form_model.ModelMultipleChoiceField(queryset=models.NNewType.objects.all())  # 多選
    # authors = form_model.ModelChoiceField(queryset=models.NNewType.objects.all())  # 單選

 

 

django Form全部內置字段

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內容後綴
 
 
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,         小數位長度
 
BaseTemporalField(Field)
    input_formats=None          時間格式化   
 
DateField(BaseTemporalField)    格式:2015-09-01
TimeField(BaseTemporalField)    格式:11:12
DateTimeField(BaseTemporalField)格式:2015-09-01 11:12
 
DurationField(Field)            時間間隔:%d %H:%M:%S.%f
    ...
 
RegexField(CharField)
    regex,                      自定製正則表達式
    max_length=None,            最大長度
    min_length=None,            最小長度
    error_message=None,         忽略,錯誤信息使用 error_messages={'invalid': '...'}
 
EmailField(CharField)      
    ...
 
FileField(Field)
    allow_empty_file=False     是否容許空文件
 
ImageField(FileField)      
    ...
    注:須要PIL模塊,pip3 install Pillow
    以上兩個字典使用時,須要注意兩點:
        - form表單中 enctype="multipart/form-data"
        - view函數中 obj = MyForm(request.POST, request.FILES)
 
URLField(Field)
    ...
 
 
BooleanField(Field)  
    ...
 
NullBooleanField(BooleanField)
    ...
 
ChoiceField(Field)
    ...
    choices=(),                選項,如:choices = ((0,'上海'),(1,'北京'),)
    required=True,             是否必填
    widget=None,               插件,默認select插件
    label=None,                Label內容
    initial=None,              初始值
    help_text='',              幫助提示
 
 
ModelChoiceField(ChoiceField)
    ...                        django.forms.models.ModelChoiceField
    queryset,                  # 查詢數據庫中的數據
    empty_label="---------",   # 默認空顯示內容
    to_field_name=None,        # HTML中value的值對應的字段
    limit_choices_to=None      # ModelForm中對queryset二次篩選
     
ModelMultipleChoiceField(ModelChoiceField)
    ...                        django.forms.models.ModelMultipleChoiceField
 
 
     
TypedChoiceField(ChoiceField)
    coerce = lambda val: val   對選中的值進行一次轉換
    empty_value= ''            空值的默認值
 
MultipleChoiceField(ChoiceField)
    ...
 
TypedMultipleChoiceField(MultipleChoiceField)
    coerce = lambda val: val   對選中的每個值進行一次轉換
    empty_value= ''            空值的默認值
 
ComboField(Field)
    fields=()                  使用多個驗證,以下:即驗證最大長度20,又驗證郵箱格式
                               fields.ComboField(fields=[fields.CharField(max_length=20), fields.EmailField(),])
 
MultiValueField(Field)
    PS: 抽象類,子類中能夠實現聚合多個字典去匹配一個值,要配合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)     文件選項,目錄下文件顯示在頁面中
    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時候,可解析爲192.0.2.1, PS:protocol必須爲both才能啓用
 
SlugField(CharField)           數字,字母,下劃線,減號(連字符)
    ...
 
UUIDField(CharField)           uuid類型
View Code

 

 

字段校驗

RegexValidator驗證器

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]+$', '請輸入數字'), RegexValidator(r'^159[0-9]+$', '數字必須以159開頭')],
    )

 

自定義驗證函數

import re
from django.forms import Form
from django.forms import widgets
from django.forms import fields
from django.core.exceptions import ValidationError
 
 
# 自定義驗證規則
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('手機號碼格式錯誤')
 
 
class PublishForm(Form):
 
 
    title = fields.CharField(max_length=20,
                            min_length=5,
                            error_messages={'required': '標題不能爲空',
                                            'min_length': '標題最少爲5個字符',
                                            'max_length': '標題最多爲20個字符'},
                            widget=widgets.TextInput(attrs={'class': "form-control",
                                                          'placeholder': '標題5-20個字符'}))
 
 
    # 使用自定義驗證規則
    phone = fields.CharField(validators=[mobile_validate, ],
                            error_messages={'required': '手機不能爲空'},
                            widget=widgets.TextInput(attrs={'class': "form-control",
                                                          'placeholder': u'手機號碼'}))
 
    email = fields.EmailField(required=False,
                            error_messages={'required': u'郵箱不能爲空','invalid': u'郵箱格式錯誤'},
                            widget=widgets.TextInput(attrs={'class': "form-control", 'placeholder': u'郵箱'}))

 

 

 

補充進階

應用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">註冊</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>
Django form應用Bootstrap樣式簡單示例

 

 

批量添加樣式(可經過重寫form類的init方法來實現)

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

    def __init__(self, *args, **kwargs):
        super(LoginForm, self).__init__(*args, **kwargs)
        for field in iter(self.fields):
            self.fields[field].widget.attrs.update({
                'class': 'form-control'
            })
批量添加樣式

 

 

ModelForm

一般在Django項目中,咱們編寫的大部分都是與Django 的模型緊密映射的表單。 舉個例子,你也許會有個Book 模型,而且你還想建立一個form表單用來添加和編輯書籍信息到這個模型中。 在這種狀況下,在form表單中定義字段將是冗餘的,由於咱們已經在模型中定義了那些字段。

基於這個緣由,Django 提供一個輔助類來讓咱們能夠從Django 的模型建立Form,這就是ModelForm。

modelForm定義

form與model的終極結合。

class BookForm(forms.ModelForm):

    class Meta:
        model = models.Book
        fields = "__all__"
        labels = {
            "title": "書名",
            "price": "價格"
        }
        widgets = {
            "password": forms.widgets.PasswordInput(attrs={"class": "c1"}),
        }

class Meta下經常使用參數:

model = models.Book  # 對應的Model中的類
fields = "__all__"  # 字段,若是是__all__,就是表示列出全部的字段
exclude = None  # 排除的字段
labels = None  # 提示信息
help_texts = None  # 幫助提示信息
widgets = None  # 自定義插件
error_messages = None  # 自定義錯誤信息

ModelForm的驗證

與普通的Form表單驗證類型相似,ModelForm表單的驗證在調用is_valid() 或訪問errors 屬性時隱式調用。

咱們能夠像使用Form類同樣自定義局部鉤子方法和全局鉤子方法來實現自定義的校驗規則。

若是咱們不重寫具體字段並設置validators屬性的化,ModelForm是按照模型中字段的validators來校驗的。

save()方法

每一個ModelForm還具備一個save()方法。 這個方法根據表單綁定的數據建立並保存數據庫對象。 ModelForm的子類能夠接受現有的模型實例做爲關鍵字參數instance;若是提供此功能,則save()將更新該實例。 若是沒有提供,save() 將建立模型的一個新實例:

>>> from myapp.models import Book
>>> from myapp.forms import BookForm

# 根據POST數據建立一個新的form對象
>>> form_obj = BookForm(request.POST)

# 建立書籍對象
>>> new_ book = form_obj.save()

# 基於一個書籍對象建立form對象
>>> edit_obj = Book.objects.get(id=1)
# 使用POST提交的數據更新書籍對象
>>> form_obj = BookForm(request.POST, instance=edit_obj)
>>> form_obj.save()
相關文章
相關標籤/搜索