在Django中設置跨域資源共享(CORS)可以通過安裝django-cors-headers
插件來實現。下面是設置的步驟:
django-cors-headers
插件:pip install django-cors-headers
settings.py
文件中添加corsheaders
到INSTALLED_APPS
:INSTALLED_APPS = [
...
'corsheaders',
...
]
settings.py
文件中添加中間件CorsMiddleware
:MIDDLEWARE = [
...
'corsheaders.middleware.CorsMiddleware',
...
]
settings.py
文件中添加CORS_ORIGIN_ALLOW_ALL
設置為True
,表示允許所有域名跨域訪問:CORS_ORIGIN_ALLOW_ALL = True
settings.py
文件中添加CORS_ORIGIN_WHITELIST
設置:CORS_ORIGIN_WHITELIST = [
'http://example.com',
'https://example.com',
]
通過以上步驟,就可以在Django中設置跨域資源共享(CORS)。