###目錄:
#1.Form 基本使用 django中的Form元件有以下幾個功能:
- 生成HTML標籤
- 驗證使用者資料(顯示錯誤資訊)
- HTML Form提交保留上次提交資料
- 初始化頁面顯示內容
#2.Form中欄位及外掛 建立Form類時,主要涉及到 【欄位】 和 【外掛】,欄位用於對使用者請求資料的驗證,外掛用於自動生成HTML;
####1.Django內建欄位如下:
- Field:
required=True, 是否允許為空
widget=None, HTML外掛
label=None, 用於生成Label標籤或顯示內容
initial=None, 初始值
help_text='', 幫助資訊(在標籤旁邊顯示)
error_messages=None, 錯誤資訊 {'required': '不能為空', 'invalid': '格式錯誤'}
show_hidden_initial=False, 是否在當前外掛後面再加一個隱藏的且具有預設值的外掛(可用於檢驗兩次輸入是否一直)
validators=[], 自定義驗證規則
localize=False, 是否支援本地化(根據不同語言地區訪問使用者顯示不同語言)
disabled=False, 是否可以編輯
label_suffix=None Label內容字尾
複製程式碼
- CharField(Field)
max_length=None, 最大長度
min_length=None, 最小長度
strip=True 是否移除使用者輸入空白
複製程式碼
- IntegerField(Field), FloatField(IntegerField)
max_value=None, 最大值
min_value=None, 最小值
複製程式碼
- 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模組,pip 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='', 幫助提示
複製程式碼
- TypedChoiceField(ChoiceField)
coerce = lambda val: val 對選中的值進行一次轉換,通過lambda函式實現
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): 抽象類,子類中可以實現聚合多個字典去匹配一個值,要配合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型別
import uuid
# make a UUID based on the host ID and current time
>>> uuid.uuid1() # doctest: +SKIP
UUID('a8098c1a-f86e-11da-bd1a-00112444be1e')
# make a UUID using an MD5 hash of a namespace UUID and a name
>>> uuid.uuid3(uuid.NAMESPACE_DNS, 'python.org')
UUID('6fa459ea-ee8a-3ca4-894e-db77e160355e')
# make a random UUID
>>> uuid.uuid4() # doctest: +SKIP
UUID('16fd2706-8baf-433b-82eb-8c7fada847da')
# make a UUID using a SHA-1 hash of a namespace UUID and a name
>>> uuid.uuid5(uuid.NAMESPACE_DNS, 'python.org')
UUID('886313e1-3b8a-5372-9b90-0c9aee199e5d')
# make a UUID from a string of hex digits (braces and hyphens ignored)
>>> x = uuid.UUID('{00010203-0405-0607-0809-0a0b0c0d0e0f}')
# convert a UUID to a string of hex digits in standard form
>>> str(x)
'00010203-0405-0607-0809-0a0b0c0d0e0f'
# get the raw 16 bytes of the UUID
>>> x.bytes
b'\x00\x01\x02\x03\x04\x05\x06\x07\x08\t\n\x0b\x0c\r\x0e\x0f'
# make a UUID from a 16-byte string
>>> uuid.UUID(bytes=x.bytes)
UUID('00010203-0405-0607-0809-0a0b0c0d0e0f')
複製程式碼
- Django內建外掛:
TextInput(Input) #input type="text"
NumberInput(TextInput) # 數字輸入框
EmailInput(TextInput) # 郵箱輸入框
URLInput(TextInput) # url輸入框
PasswordInput(TextInput) # 密碼輸入框
HiddenInput(TextInput) # 隱藏輸入框
Textarea(Widget) # textarea文字區
DateInput(DateTimeBaseInput) # 日期輸入框
DateTimeInput(DateTimeBaseInput) # 日期時間輸入框
TimeInput(DateTimeBaseInput) # 時間輸入框
CheckboxInput # 多選框
Select # 下拉框
NullBooleanSelect # 非空布林值下拉框
SelectMultiple # 多選下拉框
RadioSelect # 單選框
CheckboxSelectMultiple # 多選checkbox ???
FileInput # 檔案上傳
ClearableFileInput
MultipleHiddenInput # 多隱藏輸入框
SplitDateTimeWidget # 時間分割框(兩個input框)
SplitHiddenDateTimeWidget
SelectDateWidget
複製程式碼
- 常用的選擇外掛
# 單radio,值為字串
# user = fields.CharField(
# initial=2,
# widget=widgets.RadioSelect(choices=((1,'上海'),(2,'北京'),))
# )
# 單radio,值為字串
# user = fields.ChoiceField(
# choices=((1, '上海'), (2, '北京'),),
# initial=2,
# widget=widgets.RadioSelect
# )
# 單select,值為字串
# user = fields.CharField(
# initial=2,
# widget=widgets.Select(choices=((1,'上海'),(2,'北京'),))
# )
# 單select,值為字串
# user = fields.ChoiceField(
# choices=((1, '上海'), (2, '北京'),),
# initial=2,
# widget=widgets.Select
# )
# 多選select,值為列表
# user = fields.MultipleChoiceField(
# choices=((1,'上海'),(2,'北京'),),
# initial=[1,],
# widget=widgets.SelectMultiple
# )
# 單checkbox
# user = fields.CharField(
# widget=widgets.CheckboxInput()
# )
# 多選checkbox,值為列表
# user = fields.MultipleChoiceField(
# initial=[2, ],
# choices=((1, '上海'), (2, '北京'),),
# widget=widgets.CheckboxSelectMultiple
# )
複製程式碼
Django模版加減乘除:
Django模版加法:
{{ value|add:10}}
value=5,則返回15 Django模版減法:
{{value|add:-10}}
value=5,則返回-5,這個比較好理解,減法就是加一個負數 Django模版乘法:
{% widthratio 5 1 100 %}
上面的程式碼表示:5/1 *100,返回500,widthratio需要三個引數,它會使用 引數1/引數2*引數3,所以要進行乘法的話,就將引數2=1即可 Django模版除法
view sourceprint?
{% widthratio 5 100 1 %}
上面的程式碼表示:5/100*1,返回0.05,只需要將第三個引數設定為1即可
複製程式碼
#3.通過Django表單Form來完成需求 ###1.根據使用者填寫表單的不同跳往不同的頁面 1.先建立app專案名:djangoform
2.app下建立資料夾djangoform,並建立表單form1.py
# -*- coding:utf8 -*-
from django.forms import Form
from django.forms import widgets # 外掛
from django.forms import fields # 欄位
class webpage(Form):
page = fields.CharField()
複製程式碼
3.app下建立templates資料夾,並建立不同的html網頁
- index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>首頁</title>
</head>
<body>
<form action="" method="post">
{% csrf_token %}
請選擇要進入的頁面:{{ web.page }}
<input type="submit" value="提交">
</form>
</body>
</html>
複製程式碼
- page1.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>page1</title>
</head>
<body>
Page1:一顰一笑一傷悲,一生痴迷一世醉.
</body>
</html>
複製程式碼
- page2.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>page2</title>
</head>
<body>
Page2:一嗟一嘆一輪迴,一寸相思一寸灰.
</body>
</html>
複製程式碼
其他幾個網頁類似 4.建立檢視views.py
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.shortcuts import render,redirect
from django.http import HttpResponse
from djangoform import form1
# Create your views here.
def indexPage(request):
if request.method == "GET":
webPage=form1.webpage()
return render(request,'index.html',{'web':webPage})
elif request.method == "POST":
webPage = form1.webpage(request.POST,request.FILES)
if webPage.is_valid():
values = webPage.clean()
print(values)
if values['page'] == '1':
return render(request, 'page1.html', {'web': webPage})
elif values['page']== '2':
return render(request, 'page2.html', {'web': webPage})
elif values['page']== '3':
return render(request, 'page3.html', {'web': webPage})
else:
errors = webPage.errors
print(errors)
return render(request, 'index.html', {'web': webPage})
else:
return redirect('http://www.baidu.com')
def index(request):
if request.method == "GET":
obj = forms.MyForm() # 沒有值,在頁面上渲染form中的標籤
return render(request, 'index.html', {'form': obj})
elif request.method == "POST":
obj = forms.MyForm(request.POST, request.FILES) # 將post提交過來的資料作為引數傳遞給自定義的Form類
if obj.is_valid(): # obj.is_valid()返回一個bool值,如果檢查通過返回True,否則返回False
values = obj.clean() # 拿到處理後的所有資料,鍵值對的形式
print(values)
else:
errors = obj.errors # 拿到未通過的錯誤資訊,裡面封裝的都是物件
print(errors)
return render(request, 'index.html', {'form': obj})
else:
return redirect('http://www.baidu.com')
複製程式碼
5.定義檢視函式相關的·urls.py·
from django.conf.urls import include, url
from django.contrib import admin
from . import views
urlpatterns = [
url(r'^page/',views.indexPage,),
]
複製程式碼
6.把我們新定義的app加到settings.py中的INSTALL_APPS中和urls中,詳情見Django教程(一)- Django檢視與網址
效果展示:
##2.在網頁上列印9*9乘法表
- home.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>九九乘法表</title>
</head>
<body>
{% for i in list %}
{% for j in list %}
{% if j <= i %}
{{i}}*{{j}}={% widthratio j 1 i %}
{% endif %}
{% endfor %}<br>
{% endfor %}
</body>
</html>
複製程式碼
- views.py
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.shortcuts import render
# Create your views here.
def home(request):
list= [1,2,3,4,5,6,7,8,9,]
return render(request,'home.html',{'list':list})
複製程式碼
- urls.py
from django.conf.urls import url
from . import views
urlpatterns=[
url(r'^home/$',views.home,name='home',)
]
複製程式碼
效果展示:
##3.在網頁上列印1-100之間的偶數 先了解下python中map函式
>>> map(str, range(5)) #對range(5)各項進行str操作
['0', '1', '2', '3', '4'] #返回列表
>>> def add(n):return n+n
...
>>> map(add, range(5)) #對range(5)各項進行add操作
[0, 2, 4, 6, 8]
>>> map(lambda x:x+x,range(5)) #lambda 函式,各項+本身
[0, 2, 4, 6, 8]
>>> map(lambda x:x+1,range(10)) #lambda 函式,各項+1
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
>>> map(add,'zhoujy')
['zz', 'hh', 'oo', 'uu', 'jj', 'yy']
#想要輸入多個序列,需要支援多個引數的函式,注意的是各序列的長度必須一樣,否則報錯:
>>> def add(x,y):return x+y
...
>>> map(add,'zhoujy','Python')
['zP', 'hy', 'ot', 'uh', 'jo', 'yn']
>>> def add(x,y,z):return x+y+z
...
>>> map(add,'zhoujy','Python','test') #'test'的長度比其他2個小
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: add() takes exactly 2 arguments (3 given)
>>> map(add,'zhoujy','Python','testop')
['zPt', 'hye', 'ots', 'uht', 'joo', 'ynp']
複製程式碼
- views.py
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.shortcuts import render
# Create your views here.
def even(request):
list = map(str,range(100)) #對range(100)各項進行str操作
return render(request,'even.html',{'list':list})
複製程式碼
- urls.py
from django.conf.urls import url
from . import views
urlpatterns=[
url(r'^even/$',views.even,name='even',)
]
複製程式碼
- even.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>1-100之間的偶數</title>
</head>
<body>
{% for item in list %}
{% if forloop.counter|divisibleby:2 %}{{forloop.counter}} {% if not forloop.last %},{% endif %} {% endif %}
{% endfor %}
</body>
</html>
複製程式碼
效果如下:
#4.自定義驗證驗證規則
- 方式1:在欄位中自定義validators設計正則匹配
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開頭')],
)
複製程式碼
- 方式2:自定義規則函式處理資料
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'郵箱'}))
複製程式碼