django中的Form通常有兩種功能:javascript
-----------------------------------總結:-----------------------------------------html
一、<form action="/from1/" method="post">中url必需要包括在/xxx/中間,由於,不管你在路由中有沒有寫最後的/在跳轉的時候,瀏覽器都會爲你自動加上,因此你必須加上,否則會報錯java
二、input標籤你本身能夠在html中建立,也能夠利用djanjo建立,利用djanjo建立的好處是,當你在input標籤中寫入數據後,提交刷新頁面的時候,數據還存在,由於在你寫的f1 = Form1(request.POST)中已經存在你所輸入的數據python
三、在render(requset,{})中傳參數的時候,既能夠用local()進行傳遞,又能夠用字典進行傳遞jquery
四、後臺獲取數據的時候,不能經過索引進行取值,例f['user']會報錯,應該經過 . 進行獲取值ajax
五、request.method == 'POST' 其中的POST,必須大寫,否則會報錯數據庫
1、forms.CharField()中參數總結django
required=False ---------------------------------------------------------------------------------------------------------------能夠爲空,默認爲Ture不能爲空瀏覽器
max_length=10 ---------------------------------------------------------------------------------------------------------------最多10個字符緩存
mix_length=10 ---------------------------------------------------------------------------------------------------------------最少10個字符
error_messages={'required':'用戶名不能爲空','min_length':'標題最少爲5個字符','max_length':'標題最多爲20個字符'}----自定義錯誤信息
widget=forms.TextInput()--------------------------------------------------------------------------------------------------------默認是input標籤
widget=forms.Textarea()----------------------------------------------------------------------------------------------------------文本標籤
...........
widget=forms.TextInput(attrs={'class': "form-control", 'placeholder': '郵箱'}),------------------------------------爲標籤設置class屬性以及顯示
==============================================================================================
下拉框,參數choices=xxx是固定格式,參數a的形式必須寫成下面這種形式,當咱們往數據庫中添加數據的時候,在不重新啓動服務的狀況下,下拉框中的數據不會更新,由於類下的靜態字段只建立一次,建立對象只執行__init__方法,因此必須在建立對象執行__init__方法的時候再一次執行一下靜態字段就能夠達到更新的目的
a = (
(6,'乒乓球'),
(1,'足球'),
(2,'籃球'),
(3,'手球'),
)
forms.CharField( widget=forms.Select(choices=a) )
自定製驗證規則:
本身能夠自定義驗證規則,加到裏面
from django.core.exceptions import ValidationError from django import forms import re 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('手機號碼格式錯誤') pwd = forms.CharField(validators=[mobile_validate, ], error_messages={'required': u'手機不能爲空'}, widget=forms.TextInput(attrs={'class': "form-control",'placeholder': u'手機號碼'}))
一、設置及獲取Cookie:
#!/usr/bin/env python # -*- coding:utf-8 -*- from django.shortcuts import render,HttpResponse def form1(request): print(request.COOKIES) print(request.COOKIES['k9']) #若是沒有的話會報錯 print(request.get_signed_cookie('k3',salt='alex',default=None)) #獲取的時候也得加salt rep = HttpResponse('GHHG') rep.set_cookie('k1',1213) rep.set_signed_cookie('k3',456,salt='alex',) return rep
request.COOKIES['key'] request.get_signed_cookie(key, default=RAISE_ERROR, salt='', max_age=None) 參數: default: 默認值 salt: 加密鹽 max_age: 後臺控制過時時間
二、設置Cookie:
rep = HttpResponse(...) 或 rep = render(request, ...) rep.set_cookie(key,value,...) rep.set_signed_cookie(key,value,salt='加密鹽',...) 參數: key, 鍵 value='', 值 max_age=None, 超時時間 expires=None, 超時時間(IE requires expires, so set it if hasn't been already.) path='/', Cookie生效的路徑,/ 表示根路徑,特殊的:跟路徑的cookie能夠被任何url的頁面訪問 domain=None, Cookie生效的域名 secure=False, https傳輸 httponly=False 只能http協議傳輸,沒法被JavaScript獲取(不是絕對,底層抓包能夠獲取到也能夠被覆蓋)
max_age=None, 後面直接寫時間就能夠了
expires=None , 必須寫獲取當前時間,再設置以當前時間爲準,多長時間後失效 expires= time.time() + 10
因爲cookie保存在客戶端的電腦上,因此,JavaScript和jquery也能夠操做cookie。
<script src='/static/js/jquery.cookie.js'></script> $.cookie("list_pager_num", 30,{ path: '/' });
Django中默認支持Session,其內部提供了5種類型的Session供開發者使用:
一、數據庫Session
二、緩存Session
三、文件Session
四、緩存+數據庫Session
五、加密cookie Session
擴展:Session用戶驗證(裝飾器)
def login(func): def wrap(request, *args, **kwargs): # 若是未登錄,跳轉到指定頁面 if request.session['is_login']: return redirect('http://www.baidu.com') return func(request, *args, **kwargs) return wrap return HttpResponse('GHHG')
1、簡介
若是在配置中加入 'django.middleware.csrf.CsrfViewMiddleware', post請求就會開啓驗證,若是爲驗證經過,post請求不會經過,若是想經過驗證,就在html的body部分加入
{
%
csrf_token
%
}
--------------->第一次get請求的時候,會隨機生成一個具備驗證功能的字符串,當咱們經過post方式進行請求的時候,就會經過驗證
django爲用戶實現防止跨站請求僞造的功能,經過中間件 django.middleware.csrf.CsrfViewMiddleware 來完成。而對於django中設置防跨站請求僞造功能有分爲全局和局部。
全局:
中間件 django.middleware.csrf.CsrfViewMiddleware
局部:
注:from django.views.decorators.csrf import csrf_exempt,csrf_protect
2、應用
一、普通表單
veiw中設置返回值: return render_to_response('Account/Login.html',data,context_instance=RequestContext(request)) 或者 return render(request, 'xxx.html', data)
html中設置Token: {% csrf_token %}
二、Ajax
對於傳統的form,能夠經過表單的方式將token再次發送到服務端,而對於ajax的話,使用以下方式。
view.py
from django.template.context import RequestContext # Create your views here. def test(request): if request.method == 'POST': print request.POST return HttpResponse('ok') return render_to_response('app01/test.html',context_instance=RequestContext(request))
text.html
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> </head> <body> {% csrf_token %} <input type="button" onclick="Do();" value="Do it"/> <script src="/static/plugin/jquery/jquery-1.8.0.js"></script> <script src="/static/plugin/jquery/jquery.cookie.js"></script> <script type="text/javascript"> var csrftoken = $.cookie('csrftoken'); function csrfSafeMethod(method) { // these HTTP methods do not require CSRF protection return (/^(GET|HEAD|OPTIONS|TRACE)$/.test(method)); } $.ajaxSetup({ beforeSend: function(xhr, settings) { if (!csrfSafeMethod(settings.type) && !this.crossDomain) { xhr.setRequestHeader("X-CSRFToken", csrftoken); } } }); function Do(){ $.ajax({ url:"/app01/test/", data:{id:1}, type:'POST', success:function(data){ console.log(data); } }); } </script> </body> </html>