其他分享
首页 > 其他分享> > django-cors-headers

django-cors-headers

作者:互联网

对于前后端分离的架构,后端 API 需要添加 CORS 相应头以提供跨域访问功能。可以自行在相应的每个 Header 中添加,当然现成的轮子有了,何乐而不为? pip install django-cors-headers 使用非常简单,只要添加 installed_app 和 middlewares 就可以了。
'corsheaders'

 

 'corsheaders.middleware.CorsMiddleware',

 

 

 

标签:corsheaders,app,django,headers,添加,cors
来源: https://www.cnblogs.com/xing03/p/12510221.html