在django如何设置响应头的头信息
作者:互联网
在原生django当中我们想要设置响应头信息,
只需要在HttpResponse响应对象内直接通过 key:value 的方式设值即可,如下:
def test(request): res = HttpResponse('ok') res['Access-Control-Allow-Methods'] = 'get,post,hahahahha' return res # HttpResponse、render,redirect本质上都是HttpResponse响应对象
而drf中我们通过在响应的headers参数内传值来设置响应头信息
标签:res,信息,django,响应,设置,HttpResponse 来源: https://www.cnblogs.com/yesirya/p/16319773.html