在django中设置布尔请求头的格式

时间:2013-09-09 18:09:34

标签: python django http-headers

我通过调用HttpResponse

在我的django视图中创建了一个响应对象
myResponse = HttpResponse("Here is some text")

我想设置响应的Access-Control-Allow-Credentials标头为true。应该像我为其他标题一样使用python字符串设置

myResponse['Access-Control-Allow-Credentials'] = 'true'

或使用python boolean

myResponse['Access-Control-Allow-Credentials'] = True

或将要么工作? (如果他们在技术上都有效,那就更“正确”了)

2 个答案:

答案 0 :(得分:2)

一起去:

myResponse['Access-Control-Allow-Credentials'] = 'true'

如果布尔True序列化为“True”,则某些浏览器可能不接受

答案 1 :(得分:1)