“Django-Cors-Headers” Kod odpowiedzi

Django-Cors-Headers

$ pipenv install django-cors-headers
# or
$ pip install django-cors-headers
Salo Hopeless

Django-Cors-Headers

CORS_ALLOWED_ORIGINS = [
    "https://example.com",
    "https://sub.example.com",
    "http://localhost:8080",
    "http://127.0.0.1:9000"
]
Innocent Ibis

Dostęp do kontroli-alg-origin django

CORS_ORIGIN_WHITELIST = (
    'google.com',
    'hostname.example.com'
)
Relieved Rattlesnake

Django-Cors-Headers

python -m pip install django-cors-headers
Innocent Ibis

Django-Cors-Headers

INSTALLED_APPS = [
    ...
    'corsheaders',
    ...
]
Innocent Ibis

Odpowiedzi podobne do “Django-Cors-Headers”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu