在Django 1.3中读取原始HTTP请求

前端之家收集整理的这篇文章主要介绍了在Django 1.3中读取原始HTTP请求前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想在Django 1.3中读取原始HTTP请求.

有一个简单的方法吗?

我尝试了以下但没有成功:

clength = int(request.Meta.get("CONTENT_LENGTH"))
data = request.read(1000)
# data comes out empty

还尝试过:

for part in request:
    pass
    # never enters the loop

我这样做的原因是因为在POST命令上使用多部分/相关MIME信息时,我的raw_post_data属性是空的.显然是bug that’s been there for a long time.

最佳答案
你试过HttpRequest.raw_post_data吗?在修复错误之前,您应该看一下这些内容.
https://docs.djangoproject.com/en/1.3/ref/request-response/#django.http.HttpRequest.raw_post_data
原文链接:https://www.f2er.com/python/439209.html

猜你在找的Python相关文章