vue本地环境请求线上django后端没有cookie

1、django安装django-cros-headers,settings配置:

INSTALLED_APPS = [
    'corsheaders',
    ...
]
MIDDLEWARE = [
    'corsheaders.middleware.CorsMiddleware',
    ...
]
CORS_ALLOW_CREDENTIALS = True
CORS_ORIGIN_ALLOW_ALL = True

2、axios请求默认 withCredentials: true

上一篇:因使用fasthttp(golang)再次遇到跨域问题的解决过程纪录,方法适用于其它后端语言。


下一篇:flash跨域策略文件crossdomain.xml配置详解