https://github.com/adamchainz/django-cors-headers

    :::tips python3 -m pip install django-cors-headers :::

    1. INSTALLED_APP = [
    2. ...
    3. 'corsheaders',
    4. ...
    5. ]
    6. MIDDLEWARE = [
    7. 'corsheaders.middleware.CorsMiddleware',
    8. ...
    9. ]
    10. CORS_ORIGIN_WHITELIST = (
    11. 'http://127.0.0.1:8081',
    12. )

    :::tips 注意:在MIDDLEWARE的配置中,要将Cors的中间件插入到最前面 :::

    也可以使用下面的配置来允许所有调用者使用

    1. CORS_ORIGIN_ALLOW_ALL = True