10

如何在 Django render_to_response 中使用 HTTP 响应标头

我想使用 Cache-Control 但不知道它是否有效。以下是否正确:

render_to_response(templatename, {'Cache-Control':'no-cache'},context_instance=RequestContext(httpreq))
4

1 回答 1

16

直接在响应对象上设置标头。

https://docs.djangoproject.com/en/dev/ref/request-response/#setting-headers

response = render_to_response(...)
response['Cache-Control'] = 'no-cache'
return response
于 2012-04-12T19:39:57.057 回答