在Django中,我尝试记录请求和响应内容的长度,这与Django服务器打印到stderr的内容完全相同。
[05/Apr/2011 22:59:08] "GET /pages/ HTTP/1.1" 200 332161
[05/Apr/2011 22:59:15] "GET /pages/12 HTTP/1.1" 301 0
[05/Apr/2011 22:59:15] "GET /pages/12/ HTTP/1.1" 200 361474
[05/Apr/2011 22:59:16] "GET /pages/12/load/tags/ HTTP/1.1" 200 13899
[05/Apr/2011 22:59:16] "GET /pages/12/load/comments/ HTTP/1.1" 200 82
所以,我写了一个简单的中间件如下,但是,'Content-Length'的值总是空的。
class LogHttpResponse(object):
def process_response(self, request, response):
import datetime
print response.items()
time_text = datetime.datetime.now().strftime('%m/%d/%Y %H:%M:%S')
print '[%s] "%s %s" %d %s' % (time_text, request.method, request.path,
response.status_code,
response.get('Content-Length', ''))
return response
我已经通过火调试检查了,在响应头中有'Content-Length'。但是在中间件中没有'Content-Length', "print response.items()"显示:
[('Content-Type', 'text/html; charset=utf-8')]
中间件订单是否有问题?
我已经通过火调试检查,有'Content-Length'在响应标头。但是在中间件中没有"内容长度"[…中间件订单有问题吗?
是的。处理请求时应用自顶向下的中间件类(在settings.MIDDLEWARE_CLASSES
中),处理响应时应用自底向上的中间件类。如果你有'django.middleware.http.ConditionalGetMiddleware'
在你的中间件类,它将添加一个'Content-Length'
头到HttpResponse。
虽然如果你把你的中间件类在settings.MIDDLEWARE_CLASSES
的'django.middleware.http.ConditionalGetMiddleware'
之后,它会在处理响应时首先应用这个,然后再应用ConditionalMiddleware
。这就是为什么你在Firebug中看到一个Content-Length
头,尽管当你的中间件被调用时它还没有被处理。
len(response.content)
呢?这将给出响应内容中的字符数。我想这和字节数不一定是一样的