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