如何在python中发送原始http头,就像在PHP中的header()一样?
答案 0 :(得分:1)
将包含标题名称和标题值的两元组列表传递给start_response()
函数。
答案 1 :(得分:1)
在Django中,你会像:
def someview(request):
# ... etc ...
out = HttpResponse(outputstring,
mimetype="text/html",
status_code="302",
)
out['Content-Disposition'] = "attachment; filename=download.html"
# fill in all your favorite HTTP headers here
return out
...对于缓存控制和朋友,你需要导入一堆装饰器并相应地包装你的视图函数(我忘了哪个) - 这是因为django有一个缓存系统,其中有许多子罗莎位框架是整合的。
我发现缓存的东西令人困惑,但也很好。非缓存HTTP标头是E-Z。