yangck 7 năm trước cách đây
mục cha
commit
58d353089a
1 tập tin đã thay đổi với 20 bổ sung0 xóa
  1. 20 0
      README.md

+ 20 - 0
README.md

@@ -160,6 +160,26 @@
 
     #migration 
 
+### [CROS](https://github.com/ottoyiu/django-cors-headers/)
+    pip install django-cors-headers==2.1.0
+
+
+    #configuration
+    INSTALLED_APPS = (
+        ...
+        'corsheaders',
+        ...
+    )
+
+    MIDDLEWARE = [  # Or MIDDLEWARE_CLASSES on Django < 1.10
+        ...
+        'corsheaders.middleware.CorsMiddleware',
+        'django.middleware.common.CommonMiddleware',
+        ...
+    ]
+
+    CORS_ORIGIN_ALLOW_ALL = True
+