django中发送get post请求并获得数据

django中发送get post请求并获得数据

  • 项目结构如下
  • 注册路由 urls.py
  • 在处理函数中处理请求 views.py
  • 进行 get的请求
  • 01浏览器 get请求传参数
  • 02服务器django get参数解析获取
  • 01浏览器 post的发送
    • 浏览器get 请求 获取页面
    • 返回的 form 发送post请求 带参数
  • 02服务器django的post请求数据解析参数--解决csrf的问题

项目结构如下

django中发送get post请求并获得数据_第1张图片

注册路由 urls.py

 # 测试get post
 path('text_get_post', views.test_get_post),
 #text_get_post 是路由url  views.test_get_post 是处理函数

在处理函数中处理请求 views.py

django中发送get post请求并获得数据_第2张图片

def test_get_post(request):
    if request.method == 'GET':
    	#处理get 请求
    elif request.method == 'POST':
    	#处理post请求
    else:
        return HttpResponse("is ok")
     

进行 get的请求

django中发送get post请求并获得数据_第3张图片
django中发送get post请求并获得数据_第4张图片

01浏览器 get请求传参数

django中发送get post请求并获得数据_第5张图片

http://127.0.0.1:8000/text_get_post?a=12&c=45
a=12&c=45 就是参数

02服务器django get参数解析获取

django中发送get post请求并获得数据_第6张图片

def test_get_post(request):
    if request.method == 'GET':
    	#处理get 请求
    	# text_get_post?a=12&c=45
        # 从request 的GET字典中获取 a  如果没有就会报错
        # text_get_post?c=45  没有a 就会报错
         a = request.GET['a']
         
        # text_get_post?a=12
        # 从request 的GET字典中获取 c  如果没有就会 使用no value 默认值
        c = request.GET.get('c', "no value")

        # 获取列表 存在多个同key
        # text_get_post?a=12&c=45&d=45&d=77&d=11
        # ['45', '77', '11']
        d = request.GET.getlist('d', "no value")
        
        # 当存在
        print(c)
        print(a)
        print(d)
        return HttpResponse(temp)
    elif request.method == 'POST':
    	#处理post请求
    else:
        return HttpResponse("is ok")

django中发送get post请求并获得数据_第7张图片

总结就是
GET[‘a’] 如果url 没有传递过来 就会报错
GET.get(‘c’, “no value”) 如果url 没有传递过来 就会使用默认值
request.GET.getlist(‘d’, “no value”) 当存在多个相同key 就会形成列表

01浏览器 post的发送

django中发送get post请求并获得数据_第8张图片

可以get 请求返回页面 页面中存在form form 进行post 请求

在views.py

def test_get_post(request):
    if request.method == 'GET':
		# GET POST的处理
		temp = '''
		     
姓名:
'''
return HttpResponse(temp) elif request.method == 'POST': username = request.POST['username'] print(username) return HttpResponse(username)

浏览器get 请求 获取页面

django中发送get post请求并获得数据_第9张图片

返回的 form 发送post请求 带参数

一下代码就会发送post请求

temp = '''
    
姓名: 密码: 年龄:
'''

django中发送get post请求并获得数据_第10张图片
django中发送get post请求并获得数据_第11张图片

02服务器django的post请求数据解析参数–解决csrf的问题

elif request.method == 'POST':
     username = request.POST['username']
     passd = request.POST['pass']
     age = request.POST['age']
     print(username+passd+age)
     return HttpResponse(username+passd+age)

把表单中提交的数据获取出来
并返回
django中发送get post请求并获得数据_第12张图片
django中发送get post请求并获得数据_第13张图片
django中发送get post请求并获得数据_第14张图片

你可能感兴趣的:(pythonSet,django,django,python,后端)