Django Python 获取请求头信息Content-Range的方法


Posted in Python onAugust 06, 2019

request请求头信息的键会加上HTTP_转换成大写存到request.META中

因此你只需要

content_range = request.META['HTTP_CONTENT_RANGE']

这样就可以获取到Content-Range的信息。

django官网的解释:

A standard Python dictionary containing all available HTTP headers. Available headers depend on the client and server, but here are some examples:

CONTENT_LENGTH ? The length of the request body (as a string).
CONTENT_TYPE ? The MIME type of the request body.
HTTP_ACCEPT ? Acceptable content types for the response.
HTTP_ACCEPT_ENCODING ? Acceptable encodings for the response.
HTTP_ACCEPT_LANGUAGE ? Acceptable languages for the response.
HTTP_HOST ? The HTTP Host header sent by the client.
HTTP_REFERER ? The referring page, if any.
HTTP_USER_AGENT ? The client's user-agent string.
QUERY_STRING ? The query string, as a single (unparsed) string.
REMOTE_ADDR ? The IP address of the client.
REMOTE_HOST ? The hostname of the client.
REMOTE_USER ? The user authenticated by the Web server, if any.
REQUEST_METHOD ? A string such as "GET" or "POST".
SERVER_NAME ? The hostname of the server.
SERVER_PORT ? The port of the server (as a string).
With the exception of CONTENT_LENGTH and CONTENT_TYPE, as given above, any HTTP headers in the request are converted to META keys by converting all characters to uppercase, replacing any hyphens with underscores and adding an HTTP_ prefix to the name. So, for example, a header called X-Bender would be mapped to the META key HTTP_X_BENDER.

很多同学在找Content-Range的时候发现文档中没有这个,所以以为不支持这个,一直再找。百度 Google什么的

但是其实这个文档只是列出的其中一部分,而且他们没细心的读A standard Python dictionary containing all available HTTP headers,这一句,同时上面的也只是一部分例子,因此在看文档的时候,希望同学们能细心一点!

以上这篇Django Python 获取请求头信息Content-Range的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python内置的字符串处理函数整理
Jan 29 Python
在Python操作时间和日期之asctime()方法的使用
May 22 Python
Python的网络编程库Gevent的安装及使用技巧
Jun 24 Python
详解用TensorFlow实现逻辑回归算法
May 02 Python
python实现kNN算法识别手写体数字的示例代码
Aug 16 Python
python 利用turtle库绘制笑脸和哭脸的例子
Nov 23 Python
Python django框架开发发布会签到系统(web开发)
Feb 12 Python
使用opencv识别图像红色区域,并输出红色区域中心点坐标
Jun 02 Python
Pycharm中使用git进行合作开发的教程详解
Nov 17 Python
用基于python的appium爬取b站直播消费记录
Apr 17 Python
解决pytorch-gpu 安装失败的记录
May 24 Python
Python  lambda匿名函数和三元运算符
Apr 19 Python
pytorch中如何使用DataLoader对数据集进行批处理的方法
Aug 06 #Python
django foreignkey外键使用的例子 相当于left join
Aug 06 #Python
Python Django简单实现session登录注销过程详解
Aug 06 #Python
Django框架中序列化和反序列化的例子
Aug 06 #Python
python异常触发及自定义异常类解析
Aug 06 #Python
Python DataFrame一列拆成多列以及一行拆成多行
Aug 06 #Python
Django中reverse反转并且传递参数的方法
Aug 06 #Python
You might like
基于mysql的bbs设计(三)
2006/10/09 PHP
source.php查看源文件
2006/12/09 PHP
PHP+MYSQL会员系统的开发实例教程
2014/08/23 PHP
Laravel 5框架学习之向视图传送数据
2015/04/08 PHP
php实现查询功能(数据访问)
2017/05/23 PHP
Yii框架视图、视图布局、视图数据块操作示例
2019/10/14 PHP
突发奇想的一个jquery插件
2010/11/19 Javascript
文本框根据输入内容自适应高度的代码
2011/10/24 Javascript
javascript利用控件对windows的操作实现原理与应用
2012/12/23 Javascript
Js nodeType 属性全面解析
2013/11/14 Javascript
JS实现跟随鼠标立体翻转图片的方法
2015/05/04 Javascript
Javascript实现div的toggle效果实例分析
2015/06/09 Javascript
跟我学习javascript的异步脚本加载
2015/11/20 Javascript
详解JavaScript函数
2015/12/01 Javascript
JavaScript电子时钟倒计时第二款
2016/01/10 Javascript
JS清除文本框内容离开在恢复及鼠标离开文本框时触发js的方法
2016/01/12 Javascript
浅谈Angular中ngModel的$render
2016/10/24 Javascript
Javascript下拉刷新的简单实现
2017/02/14 Javascript
老生常谈jacascript DOM节点获取
2017/04/17 Javascript
AngularJS解决ng-if中的ng-model值无效的问题
2017/06/21 Javascript
微信小程序如何获取用户信息
2018/01/26 Javascript
AngularJS使用Filter自定义过滤器控制ng-repeat去除重复功能示例
2018/04/21 Javascript
JavaScript实现的九种排序算法
2019/03/04 Javascript
jQuery实现弹幕特效
2019/11/29 jQuery
javascript设计模式 ? 状态模式原理与用法实例分析
2020/04/22 Javascript
Python编写Windows Service服务程序
2018/01/04 Python
快速解决PyCharm无法引用matplotlib的问题
2018/05/24 Python
使用python远程操作linux过程解析
2019/12/04 Python
windows下的pycharm安装及其设置中文菜单
2020/04/23 Python
使用SimpleITK读取和保存NIfTI/DICOM文件实例
2020/07/01 Python
匡威西班牙官网:Converse西班牙
2019/10/01 全球购物
财务会计专业求职信范文
2013/12/31 职场文书
陈欧广告词
2014/03/14 职场文书
爱国主义影片观后感
2015/06/18 职场文书
springBoot基于webSocket实现扫码登录
2021/06/22 Java/Android
Python中文纠错的简单实现
2021/07/07 Python