溫馨提示×

溫馨提示×

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

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

django里post的使用方法

發(fā)布時間:2020-09-02 11:08:25 來源:億速云 閱讀:482 作者:小新 欄目:編程語言

這篇文章將為大家詳細(xì)講解有關(guān)django里post的使用方法,小編覺得挺實(shí)用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

POST傳遞參數(shù)

表單Post最簡單最基本的傳遞方式,我們先來學(xué)習(xí)如何使用表單來Post參數(shù)。我們先在目錄下新建templates文件夾,然后在該目錄下新建post.html,代碼如下:

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <title>POST Params</title></head><body><form method="post" >
  UserName:<input type="text" name="username"/>
    Password:<input type="password" name="password"/>
    <input type="submit" value="Submit">    </form></body></html>

然后我們在settings.py里配置模板路徑

#1.8版本前TEMPLATE_DIRS={
    os.path.join(BASE_DIR,'app/templates')  
}#1.8版本后TEMPLATES = [
    {        'BACKEND': 'django.template.backends.django.DjangoTemplates',           
    # templates 文件夾路徑
        'DIRS': [os.path.join(BASE_DIR,'HelloDjango/templates'),],  
        'APP_DIRS': True,'OPTIONS': {'context_processors': ['django.template.context_processors.debug', 
        'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth',
        'django.contrib.messages.context_processors.messages',
            ],
        },
    },
]

然后我們在views.py下新加函數(shù)params_post,代碼如下

def params_post(request):
    if request.method=='GET':        return render(request,'post.html')    else:
        username=request.POST.get('username','')
        password=request.POST.get('password','')        
        return HttpResponse('username='+username+"&password="+password)

method是request的一個屬性,用來判斷提交方法,如果是GET方式提交,我們渲染界面返回,如果是POST方式提交,我們獲取提交參數(shù)并返回,可以看到post獲取參數(shù)和get類似,也是會有一個POST字典,我們通過key來獲取對應(yīng)的值(對應(yīng)表單里的name)。
對于上訴代碼,其實(shí)表單也可以以get方式提交,只需要將method屬性設(shè)置為get即是以get方式進(jìn)行提交,此時在view函數(shù)中我們需要通過GET字典來獲取提交的值。(補(bǔ)充上節(jié)的內(nèi)容)
同時新加url攔截post/,urls.py代碼如下

from django.conf.urls import patterns, include, urlfrom django.contrib import adminfrom app.views import params_test, params_test_reg, params_post
urlpatterns = patterns('',    # Examples:
    # url(r'^$', 'PostParams.views.home', name='home'),
    # url(r'^blog/', include('blog.urls')),
    url(r'^admin/', include(admin.site.urls)),
    url(r'^params_test/$',params_test),
    url(r'^params_test_reg/str(?P<str>\w+)page(?P<page>\d+)/$',params_test_reg),
    url(r'^post/$',params_post),
)

然后啟動服務(wù)器,打開瀏覽器,輸入用戶名和密碼點(diǎn)擊提交,即會成功,ohno,即會出現(xiàn)以下錯誤界面

django里post的使用方法

我們先別著急,先來分析下出現(xiàn)錯誤的原因,CSRF,百度一下發(fā)現(xiàn)這是跨站請求偽造,其實(shí)就是Django已經(jīng)幫我們做了CSRF驗(yàn)證,我們在做POST提交時候需要加上csrf_token(就是一個隨機(jī)碼)來完成csrf驗(yàn)證,那該如何解決這個錯誤,我們來修改post.html代碼,如下

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>POST Params</title>
</head>
<body>
<form method="post" >
    {%csrf_token%}//csrf_token用來驗(yàn)證
  UserName:<input type="text" name="username"/>
    Password:<input type="password" name="password"/>
    <input type="submit" value="Submit">
</form>
</body>
</html>

我們重新啟動服務(wù)器,再次提交參數(shù)即可看到成功界面。

關(guān)于django里post的使用方法就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

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

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

AI