“Django-cors-headers” Respostas de código

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

Django de Origin-Origin de Access-Control

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

Respostas semelhantes a “Django-cors-headers”

Procure respostas de código populares por idioma

Procurar outros idiomas de código