其他分享
首页 > 其他分享> > 005 Django Get请求和Post请求

005 Django Get请求和Post请求

作者:互联网

Get请求和Post请求

目录

无论是GET还是POST,统一都由视图函数接收请求,通过判断request.method区分具体的请求动作

if request.method =='GET':
	# 处理GET请求时的业务逻辑

elif request.method == 'POST ' :
	# 处理POST请求的业务逻辑

else:
	# 其他请求业务逻辑

获取Get的值

我们可以使用字典的方法来获取我们的值比如

POST 的表单请求

我们在后端想要接收到消息我们首先需要在前端进行定义,我们在学习的情况下使用表单来递交登陆请求

<form method="post" action="/login">
    账户:<input type="text" name="account">
    密码:<input type="text" name="password">
    <input type="submit" value="登陆">
</form>

取消csrf验证,否则 django 将会拒绝客户端发来的POST请求,然后报错 403

暂时关闭 csrf

我们如果没有关闭 django 自带的csrf的话,我们的请求就是无法提交过来的, 我们可以前往 settings.py中的MIDDLEWARE中注释掉'django.middleware.csrf.CsrfViewMiddleware'

image-20220622153907125

制作一个登陆界面

  1. 定义视图功能
# views.py 文件内
from django.http import HttpResponse

def testPost(request):
    html = """
    <form method="post" action="/testPost">
        账户:<input type="text" name="account">
        密码:<input type="text" name="password">
        <input type="submit" value="登陆">
    </form>
    """
    if request.method == "POST":
        return HttpResponse(f'当前账户为 {request.POST.get("account","错误")}\n密码为 {request.POST.get("password","错误")}')
    
    return HttpResponse(html)
  1. 去路由内添加我们的视图
# urls.py 文件内
from django.urls import path, re_path
from . import views

urlpatterns = [
    path('testPost',views.testPost),
]

b2345bf3-0aa3-44d9-888c-9fbbe66347dc

标签:请求,GET,Get,request,csrf,POST,Post
来源: https://www.cnblogs.com/BEMAKE/p/16463806.html