zoukankan      html  css  js  c++  java
  • Django-GET和POST小记

    import requests
     
    requests.get(url='xxx')
    # 本质上就是:
    requests.request(method='get',url='xxx')
     
    
    import json
    requests.post(url='xxx',data={'name':'alex','age':18})     # content_type: application/x-www-form-urlencoded
    requests.post(url='xxx',data="name=alex&age=18")           # content_type: application/x-www-form-urlencoded
    
    
    # 不伦不类
    requests.post(url='xxx',data=json.dumps({'name':'alex','age':18}))  # content_type: application/x-www-form-urlencoded
    
    
    # 利用headers参数重写 Content_type
    requests.post(url='xxx',data=json.dumps({'name':'alex','age':18}),headers={'Content_type':'application/json'})  # content_type: application/x-www-form-urlencoded
    
    requests.post(url='xxx',json={'name':'alex','age':18})     # content_type: application/json
     
    

      

    GET:
    	""" GET请求没有请求体 """
    	requests.get(url="http://www.standby.pub")
    	# data="http GET / http1.1
    host:standby.pub
    ....
    
    "
    	
    	requests.get(url="http://www.standby.pub/index.html?p=1")
    	# data="http GET /index.html?p=1 http1.1
    host:standby.pub
    ....
    
    "
    	
    	requests.get(url="http://www.standby.pub/index.html",params={'p':1})
    	# data="http GET /index.html?p=1 http1.1
    host:standby.pub
    ....
    
    "
    
    
    
    
    POST:
    	requests.post(url="http://www.standby.pub",data={'name':'alex','age':18}) # 默认请求头:application/x-www-form-urlencoded
    	# data="http POST / http1.1
    host:standby.pub
    ....
    
    name=alex&age=18"
    	
    	
    	requests.post(url="http://www.standby.pub",json={'name':'alex','age':18}) # 默认请求头:application/json
    	# data="http POST / http1.1
    host:standby.pub
    ....
    
    {"name": "alex", "age": 18}"
    
    	""" POST请求既可以在请求体里传参,又可以在url里传参 """
    	requests.post(
    		url="http://www.standby.pub",
    		params={'p':1},
    		json={'name':'alex','age':18}
    	) # 默认请求头:application/json
    	# data="http POST /?p=1 http1.1
    host:standby.pub
    ....
    
    {"name": "alex", "age": 18}"
    

      

    作者:Standby一生热爱名山大川、草原沙漠,还有妹子
    出处:http://www.cnblogs.com/standby/

    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。

  • 相关阅读:
    少走弯路的10条忠告
    思考
    哈弗经典校训
    项目导出excel引发的一些问题
    hibernate 缓存设置
    dubbo简单用法
    sql 类型问题
    spring this.logger.isDebugEnabled()
    红黑树
    归并排序
  • 原文地址:https://www.cnblogs.com/standby/p/7679602.html
Copyright © 2011-2022 走看看