nginx - 来自 nginx 的 422 状态代码的响应缺少 'Access-Control-A

nginx配置如下:

server {
            listen 80;
            listen [::]:80;

            add_header 'Access-Control-Allow-Origin' $http_origin;
            add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS, DELETE, PUT, PATCH';
            add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range';
            add_header 'Access-Control-Max-Age' 1728000;

            server_name erp.dev.thinkerx.com;
            access_log  /home/thinkerx/nginx/access.log;
            error_log /home/thinkerx/nginx/error.log;
            location ~ /.well-known {
                    allow all;
            }

            # The rest of your server block
            root /usr/share/nginx/html/men2017-back-dev/public;
            index index.html index.htm index.php;

            location /api/ {
                    try_files $uri $uri/ /index.php$is_args$args;
            }

            location ~ \.php$ {
                            try_files $uri /index.php =404;
                            fastcgi_pass 127.0.0.1:9000;
                            fastcgi_index index.php;
                            fastcgi_buffers 16 16k;
                            fastcgi_buffer_size 32k;
                            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                            include fastcgi_params;
                    }
    }

js代码如下:

$.ajax({
    type: 'post',
    dataType: 'json',
    contentType: 'application/json; charset=UTF-8',
    url: "http://erp.dev.thinkerx.com/api/external/material/catalogs",
    data: JSON.stringify({
        domain_id: 2222,
        code:'X01',
        name:'123063'
    }),
    success: function (response) {
        console.log(response);      
    },
    error: function (xhr, status, error) {
        console.log(xhr, status, error);    
    },
});

然后,在浏览器中发送请求,chrome控制台显示两个请求。第一个请求是预检,方法是OPTION。第二种是真实请求,有响应,状态码为201。 preflight request

{"data":{"id":"16b7d6a0-9eb6-42ca-9ddb-fc61f5e082c0","domain_id":2222,"name":"1230464","code":"X01","parent_id":null,"created_at":1504698369,"updated_at":1504698369}}

如上所述,事情是预期的,但我更新了 ajax 数据。

$.ajax({
    type: 'post',
    dataType: 'json',
    contentType: 'application/json; charset=UTF-8',
    url: "http://erp.dev.thinkerx.com/api/external/material/catalogs",
    data: JSON.stringify({
        domain_id: 2222,
        code:'X01',
        // name:'123063'
    }),
    success: function (response) {
        console.log(response);      
    },
    error: function (xhr, status, error) {
        console.log(xhr, status, error);    
    },
});

我再次发送请求,不小心发生了错误。 also two requests, the second status code is 422

{"message":"Validation Failed","errors":[["Key name must be present"]],"status_code":422}

XMLHttpRequest cannot load http://erp.dev.thinkerx.com/api/external/material/catalogs. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost' is therefore not allowed access. The response had HTTP status code 422.

我有一些问题如下:

  1. 为什么报告同源策略错误?
  2. 我在控制台中看到响应,为什么 ajax xhr.responseJSON 未定义?如何获取响应?

最佳答案

我有同样的问题。问题是 nginx 仅为 200、204、301、302 和 304 状态代码添加 header 。

要为每种类型的状态代码获得相同的 header ,您必须像这样在 add_header 指令的末尾添加 [always]。

add_header 'Access-Control-Allow-Origin' $http_origin always;

希望对你有所帮助

关于nginx - 来自 nginx 的 422 状态代码的响应缺少 'Access-Control-Allow-Origin' header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46074394/

相关文章:

javascript - 如何在 Gatsby.js 中将时间戳附加到 markdown 前面的内容

node.js - 如何在 Node.js 中设置文件编码

scala - 为什么我不能在 Scala 中增加?

amazon-web-services - aws s3 ls 递归 grep 扩展 '.mov'

python - Python 中的 str.join() 和 str().join() 有什么区别

php - 为什么 Google_Service_Drive 文件的属性只返回 null?

angularjs - ngrx 参数选择函数

php - Laravel - 如何每分钟运行一个函数/ Controller ? (任务调度)

python - 无法将字节连接到 str(转换为 Python3)

r - 使用 ggplot 的条形图重新排序无法正常工作