django處理Ajax跨域訪問__Ajax

來源:互聯網
上載者:User
問題描述

在使用javascript進行ajax訪問的時候,出現如下錯誤

出錯原因:javascript處於安全考慮,不允許跨域訪問.
下圖是對跨域訪問的解釋:

(圖片是從慕課網上的 “Ajax全接觸”課程截取)
因為我用的是兩款ide, 一個是寫前端的,開啟的是’http://localhost:63343‘地址, 另一個是django伺服器,開啟了
‘http://127.0.0.1:8000‘地址, 所以在’http://localhost:63343‘的javascript對’http://127.0.0.1:8000‘進行訪問時,屬於跨域訪問.
當我將前端頁面放入django中後,就不會出現跨域訪問的拒絕了. 解決辦法 1. 修改views.py檔案

修改views.py中對應API的實現函數,允許其他域通過Ajax請求資料:

todo_list = [    {"id": "1", "content": "吃飯"},    {"id": "2", "content": "吃飯"},]class Query(View):    @staticmethod    def get(request):        response = JsonResponse(todo_list, safe=False)        response["Access-Control-Allow-Origin"] = "*"        response["Access-Control-Allow-Methods"] = "POST, GET, OPTIONS"        response["Access-Control-Max-Age"] = "1000"        response["Access-Control-Allow-Headers"] = "*"        return response    @staticmethod    def post(request):        print(request.POST)        return HttpResponse()
2. 添加中介軟體 django-cors-headers

GitHub地址: https://github.com/ottoyiu/django-cors-headers 1. 安裝 pip install django-cors-headers 2. 添加app

INSTALLED_APPS = (    ...    'corsheaders',    ...)
3. 添加中介軟體
MIDDLEWARE = [  # Or MIDDLEWARE_CLASSES on Django < 1.10    ...    'corsheaders.middleware.CorsMiddleware',    'django.middleware.common.CommonMiddleware',    ...]
4. 配置允許跨站訪問本站的地址
CORS_ORIGIN_WHITELIST = (      'localhost:63343',)
5. 更多更靈活的配置方式在github項目的readme.md上有寫. 注意:

settings.py 檔案這裡也要修改

ALLOWED_HOSTS = [    'localhost:63343',]
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.