如何在 Django render_to_response 中使用 HTTP 响应标头
我想使用 Cache-Control 但不知道它是否有效。以下是否正确:
render_to_response(templatename, {'Cache-Control':'no-cache'},context_instance=RequestContext(httpreq))
如何在 Django render_to_response 中使用 HTTP 响应标头
我想使用 Cache-Control 但不知道它是否有效。以下是否正确:
render_to_response(templatename, {'Cache-Control':'no-cache'},context_instance=RequestContext(httpreq))
直接在响应对象上设置标头。
https://docs.djangoproject.com/en/dev/ref/request-response/#setting-headers
response = render_to_response(...)
response['Cache-Control'] = 'no-cache'
return response