700字范文,内容丰富有趣,生活中的好帮手!
700字范文 > Python中通过requests模块发送POST请求.

Python中通过requests模块发送POST请求.

时间:2021-05-08 19:35:36

相关推荐

Python中通过requests模块发送POST请求.

博客核心内容:

1、Python中通过requests模块发送POST请求.

我们通常情况下提交数据一般有两种方式:Ajax和Form表单的方式

如果request.post里面没有值,我们就到request.body里面去拿

代码示例:

服务端:

from django.shortcuts import render,HttpResponsefrom django.views.decorators.csrf import csrf_exempt,csrf_protect# Create your views here.#通过装饰器避免了csrf_token攻击@csrf_exemptdef asset(request):"""我们通常情况下提交数据一般有两种方式:Ajax和Form表单的方式"""if request.method == 'GET':return HttpResponse('GET 收到...')else:print(request.POST)# print(request.body)"""<QueryDict: {'salary': ['2000'], 'username': ['Angela'], 'password': ['123456']}>注意:如果request.post里面没有值,我们就到request.body里面去拿b'{"password": "123456", "username": "Angela", "salary": 2000}'"""return HttpResponse('POST 收到...')

客户端:

#!/usr/bin/python# -*- coding:utf-8 -*-import requests"""通过requests可以向某个地址发送请求""""""response = requests.get('http://127.0.0.1:8000/asset.html')# 通过get请求返回的文本值print(response.text)"""# post发送的数据postData = {'username':'Angela','password':'123456','salary':2000,}# 对于我们工作中的自己人,我们一般会使用别的验证,而不是csrf_token验证response = requests.post('http://127.0.0.1:8000/asset.html',data=postData)# 通过get请求返回的文本值print(response.text)

效果图:

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。