vue.js和django中的访问控制 - 允许原始问题



我将服务部署在自己的计算机中,一切都很好,我决定将其放在服务器上。但是我发现一些请求受" cors"的限制,有些不是。

Web服务器已部署在Linux上。后端框架是Django,提供了DRF,提供了API服务。前端框架为vue.js.s.和Ajax请求库正在使用" Axios"。该代码在我自己的Mac上运行非常完美,没有CORS问题。但这在服务器上遇到了问题。顺便说一句,vue.js路线的模式为 history模式。

这是我的nginx配置代码:

server {
        listen  80;
        server_name 167.179.111.96;
        charset utf-8;
        location / {
                root /root/blog-frontend/dist;
                try_files $uri $uri/ @router;
                index index.html;
                add_header Access-Control-Allow-Origin *;
                add_header Access-Control-Allow-Methods *;
        }
        location @router {
            rewrite ^.*$ /index.html last;
        }
}

这是我的vue.js代码,它具有" CORS"问题。

main.js

Vue.prototype.API = api
Vue.prototype.GLOBAL = global
Vue.prototype.$axios = Axios;
Axios.defaults.headers.get['Content-Type'] = 'application/x-www-form-urlencoded'
Axios.defaults.headers.post['Content-Type'] = 'multipart/form-data'

redirect.vue

<template>
  <div id="notfound">
    <div class="notfound">
      <div class="notfound-404">
        <h1>Redirect</h1>
      </div>
      <h2>Wait a few seconds, page is redirecting</h2>
      <p>You are logging...authorization code is {{code}}</p>
    </div>
  </div>
</template>
<script>
  export default {
    name: 'redirect',
    data(){
      return{
        code:''
      }
    },
    created () {
      this.code = this.$route.query.code
      this.$axios({
        method: 'get',
        url: this.API.oauth_redirect,
        params:{
          code:this.code
        },
      }).then((response)=>{
        if (response.data.status===200){
          this.$message.success('login success')
          let data = response.data.data
          this.$store.commit('SET_TOKEN', data['token'])
          this.$store.commit('SET_USER', data)
        }
        else{
          console.log(response.data.msg)
          this.$message.error(response.data.msg)
        }
        this.$router.go(-1)
      })
    }
  }
</script>

我的后端代码:Middleware.py

from django.utils.deprecation import MiddlewareMixin
CORS = {
    'Access-Control-Allow-Headers': '*',
    'Access-Control-Allow-Methods': '*',
    'Access-Control-Allow-Origin': '*'
}

class MyMiddle(MiddlewareMixin):
    def process_response(self, request, response):
        if request.method == 'OPTIONS':
            response['Access-Control-Allow-Methods'] = CORS['Access-Control-Allow-Methods']
        response['Access-Control-Allow-Headers'] = CORS['Access-Control-Allow-Headers']
        response['Access-Control-Allow-Origin'] = CORS['Access-Control-Allow-Origin']
        return response

settings.py

import os
# production environment
if os.environ['LOGNAME'] == 'weiziyang':
    CLIENT = 'https://localhost:8080'
    DATABASES = {
        'default': {
            'ENGINE': 'django.db.backends.mysql',
            'OPTIONS': {
                'database': 'mysite',
                'user': 'root',
                'password': '********',
                'charset': 'utf8mb4',
            },
        }
    }
    GITHUB_CLIENT_ID = '7198b5e59a7094f2a198'
    GITHUB_CLIENT_SECRET = '***********'
else:
    CLIENT = 'https://167.179.111.96:80'
    DATABASES = {
        'default': {
            'ENGINE': 'django.db.backends.mysql',
            'OPTIONS': {
                'database': 'mysite',
                'user': 'root',
                'password': '******',
                'charset': 'utf8mb4',
                'init_command': 'SET storage_engine=INNODB;'
            },
        }
    }
    GITHUB_CLIENT_ID = '83539caeb4c865d8f3e6'
    GITHUB_CLIENT_SECRET = '***********'

# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
AUTH_USER_MODEL = 'user.BlogUsers'
CORS_ORIGIN_ALLOW_ALL = False
CORS_ALLOW_CREDENTIALS = True
CORS_ORIGIN_WHITELIST = (
    'http://127.0.0.1:8080',
    'http://localhost:8080',
    'http://167.179.111.96:80',
    'http://167.179.111.96'
)
ALLOWED_HOSTS = ['*']
CORS_ALLOW_METHODS = (
    'GET',
    'POST',
    'PUT',
    'PATCH',
    'DELETE',
    'OPTIONS'
)
CORS_ALLOW_HEADERS = (
    'x-requested-with',
    'content-type',
    'accept',
    'origin',
    'authorization',
    'x-csrftoken'
)

预期的结果不应包含任何CORS问题,因为我已经在自己的PC上测试了所有问题。但是我收到的错误消息是:

Access to XMLHttpRequest at 'http://167.179.111.96:8000/user/info/?token=714ae00539a1e66642ea815722908477e4b4e07a' from origin 'http://167.179.111.96' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.

drf建议使用此lib django-cors头。资料来源:https://www.django-rest-framework.org/topics/ajax-csrf-cors/#cors

使用:

pip install django-cors-headers

,然后将其添加到您的已安装应用程序中:

INSTALLED_APPS = [
    ...
    'corsheaders',
    ...
]

在您的settings.py

CORS_ORIGIN_ALLOW_ALL=True

这将允许所有域。您可以在LIB文档中阅读如何进行更好的设置。这样:

CORS_ORIGIN_WHITELIST = [
    "https://example.com",
    "https://sub.example.com",
    "http://localhost:8080",
    "http://127.0.0.1:9000"
]

最新更新