“django-cors-headers” Kode Jawaban

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

Access-Control-Wallow-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

Jawaban yang mirip dengan “django-cors-headers”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya