您好,登錄后才能下訂單哦!
怎么在Python3中使用Django實現(xiàn)一個get/post請求?相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
編緝django1/django1/setting.py,定位到TEMPLATES變量,將DIRS的值修改為BASE_DIR+"/django1/templates",
在django1/django1目錄下創(chuàng)建templates文件夾,并在其下創(chuàng)建get.html、post.html、result.html三個文件。
get.html,用于get提交:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>get請求示例</title> </head> <body> <form action="/get" method="get"> <input type="text" name="q" /> <input type="submit" value="搜索" /> </form> </body> </html>
post.html,用于post提交。{%%}表示其內(nèi)是Django模板語句,{% csrf_token %}指示此表單加載時返回token在其提交時進行token認證(如果要關(guān)閉服務端該csrf附御功能將setting.py----MIDDLEWARE----'django.middleware.csrf.CsrfViewMiddleware'注釋掉):
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>post請求示例</title> </head> <body> <form action="/post" method="post"> {% csrf_token %} <input type="text" name="q" /> <input type="submit" value="搜索" /> </form> </body> </html>
result.html,用于顯示get和post輸入的內(nèi)容。{{}}表示其內(nèi)是Django模板變量:
<h2>{{ result }}</h2>
Django所有請求路由都由urls.py設(shè)置,即便是存在的靜態(tài)文件(如html)也要配置路由才能訪問。
編緝django1/django1/urls.py,修改為以下內(nèi)容:
from django.contrib import admin from django.urls import path from django.conf.urls import url from . import view urlpatterns = [ path('admin/', admin.site.urls), # url(r'^hello$', view.hello), url(r'^get\.html$', view.get_html), url(r'^get$', view.get), url(r'^post\.html$', view.post_html), url(r'^post$', view.post), ]
在2.2中我們配置了get.html、get、post.html、post四個請求分別轉(zhuǎn)交到view.get_html、view.get、view.post_html、view.post進行處理。本節(jié)我們實現(xiàn)這四個處理邏輯。
在django1/django1文件夾下創(chuàng)建view.py,寫入以下內(nèi)容:
from django.shortcuts import render, render_to_response def get_html(request): return render_to_response('get.html') def get(request): context = {} # 通過request.GET['name']形式獲取get表單內(nèi)容 # result為重定向到的result.html所使用的變量 context['result'] = f"你搜索的內(nèi)容為:{request.GET['q']}" return render(request, 'result.html', context) def post_html(request): # 不能和get一樣使用render_to_response必須使用render進行重定向,不然服務端不會設(shè)置csrf_token # return render_to_response('post.html') return render(request, 'post.html') def post(request): context = {} # 通過request.GET['name']形式獲取post表單內(nèi)容 # result為重定向到的result.html所使用的變量 context['result'] = f"你搜索的內(nèi)容為:{request.POST['q']}" return render(request, 'result.html', context)
其中注意如注釋所強調(diào),post_html中不能使用render_to_response必須使用render進行重定向,不然服務器不能成功返回token導致token驗證失敗進而導致不能訪問頁面(403,CSRF token missing or incorrect.)。如下圖所示:
另外,如上所示返回了詳細的錯誤信息,這在信息安全中是忌諱但這并不是django沒考濾到,而是Django默認開啟DEBUG模式,到settings.py中設(shè)置DEBUG = False,并設(shè)置ALLOWED_HOSTS即可(ALLOWED_HOSTS不是指允許訪問服務的IP而是允許外部訪問服務地址)。
經(jīng)第二大節(jié)所有操作,項目目錄結(jié)構(gòu)如下圖所示(.idea和__pycache__不用管):
看完上述內(nèi)容,你們掌握怎么在Python3中使用Django實現(xiàn)一個get/post請求的方法了嗎?如果還想學到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。