欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Django之跨域-CORS策略阻止解决方法

程序员文章站 2024-01-13 21:40:52
一、问题描述前端请求时由于id不一致或者端口不一致,会出现请求被阻止的情况,如下图:二、解决方法1.安装django-cors-headerspip install -i https://pypi.douban.com/simple django-cors-headers2.将corsheaders添加到全局配置文件的INSTALLED_APPS中,尽量放在前面INSTALLED_APPS = [ 'corsheaders', 'django.contrib.admin',...

一、问题描述

前端请求时由于ip不一致或者端口不一致,会出现请求被阻止的情况,如下图:
Django之跨域-CORS策略阻止解决方法

二、解决方法

1.安装django-cors-headers

pip install -i https://pypi.douban.com/simple django-cors-headers

2.将corsheaders添加到全局配置文件的INSTALLED_APPS中,尽量放在前面

INSTALLED_APPS = [
    'corsheaders',
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'rest_framework',
    'django_filters',
    'drf_yasg',
]

3.添加中间件:‘corsheaders.middleware.CorsMiddleware’
需要添加在CommonMiddleware中间件前面(必须)

MIDDLEWARE = [
    'django.middleware.security.SecurityMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'corsheaders.middleware.CorsMiddleware',
    'django.middleware.common.CommonMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',
]

4.添加白名单

# CORS_ORIGIN_ALLOW_ALL为True, 指定所有域名(ip)都可以访问后端接口, 默认为False
CORS_ORIGIN_ALLOW_ALL = True

也可以通过白名单列表添加指定的ip或域名

# CORS_ORIGIN_WHITELIST指定能够访问后端接口的ip或域名列表
CORS_ORIGIN_WHITELIST = [
    'http://127.0.0.1:8080',
    'http://localhost:8080'
]

5.允许跨域时携带Cookie

# CORS_ALLOW_CREDENTIALS允许跨域时携带Cookie,默认为False
CORS_ALLOW_CREDENTIALS = True

6.验证结果
Django之跨域-CORS策略阻止解决方法

本文地址:https://blog.csdn.net/weixin_47454485/article/details/107655087

相关标签: django python