我通过调用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
或将要么工作? (如果他们在技术上都有效,那就更“正确”了)
答案 0 :(得分:2)
一起去:
myResponse['Access-Control-Allow-Credentials'] = 'true'
如果布尔True
序列化为“True”,则某些浏览器可能不接受
答案 1 :(得分:1)