AngularJS NodeJS Cors防火墙背后的问题

时间:2017-03-21 14:06:05

标签: angularjs node.js cors

我有一个AngularJS和NodeJS(API)应用程序。 我已经使用CORS()nodejs库在我的NodeJS上启用了CORS。

我还包含了启用CORS所需的标头。

只有当我从公司计算机访问网站时才会遇到CORS问题。它在我的个人电脑上工作得很好。任何人都可以指导我做错了什么。任何帮助或建议请。

Chrome控制台日志:

-------------------- Headers ---------------------

常规

Request URL:www.example.com:81/api/getdata
Request Method:GET
Status Code:503 Service Unavailable
Remote Address:111.111.11.111:81

响应标题:

 Cache-Control:no-store, no-cache, must-revalidate, post-check=0, pre-check=0
  Connection:close
  Content-Length:973
  Content-Type:text/html; charset=UTF-8
  Expires:Thu, 01 Jan 1970 00:00:00 GMT
  P3P:CP="CAO PSA OUR"
  Pragma:no-cache

请求标题:

  Accept:application/json, text/plain, */*
  Accept-Encoding:gzip, deflate, sdch
  Accept-Language:en-US,en;q=0.8
  Connection:keep-alive
  Host:www.example.com:81
  Origin:http://www.example.com
  Referer:http://www.example.com/
  User-Agent:Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML,   like Gecko) Chrome/56.0.2924.87 Safari/537.36

--------------------回复:--------------------

<html>
 <head>
   <title>Web Page Blocked</title>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
   <META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
   <meta name="viewport" content="initial-scale=1.0">
 </head>
 <body bgcolor="#e7e8e9">
 <div id="content">
 <h1>Web Page Blocked</h1>
 <p>Access to the web page you were trying to visit has been blocked in   accordance with company policy. Please contact your 

 system administrator if you believe this is in error.</p>
 <p><b>User:</b>  </p>
 <p><b>URL:</b> www.example.com:81/api/getdata </p>
 <p><b>Category:</b> unknown </p>
 </div>
 </body>
</html>

浏览器控制台错误:

  

XMLHttpRequest无法加载http://www.example.com:81/api/getdata。没有   请求中存在“Access-Control-Allow-Origin”标头   资源。因此不允许来源“http://www.example.com”   访问。响应的HTTP状态代码为503。

------编辑----- 这是我传球的角色()。

app.options('*',cors());

app.use(function (req, res, next){

    res.header("Access-Control-Allow-Origin", "*");
    res.setHeader("Access-Control-Allow-Methods", "GET, POST, OPTIONS, PUT, PATCH, DELETE");
    res.header("Access-Control-Allow-Methods", "GET, POST, OPTIONS, PUT, PATCH, DELETE");
    res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With,Content-type, Accept");

    res.header("Access-Control-Allow-Credentials", true);

    next();

});

1 个答案:

答案 0 :(得分:-1)

这是贵公司防火墙的问题还是CORS问题。 尝试接受CORS模块中的每个来源:

var express = require('express');
var cors = require('cors')
var app = express();

var corsOptions = {
  origin: '*',
  optionsSuccessStatus: 200 // some legacy browsers (IE11, various SmartTVs) choke on 204 
};

app.get('/products/:id', cors(corsOptions), function(req, res, next){
  res.json({msg: 'This is CORS-enabled for every origin.'});
});

app.listen(80, function(){
  console.log('CORS-enabled web server listening on port 80');
});

现在你应该收到这样的响应标题:

HTTP/1.1 200 OK
Access-Control-Allow-Origin: *
Keep-Alive: timeout=2, max=100
Connection: Keep-Alive
Transfer-Encoding: chunked
Content-Type: application/json

如果仍然无效,则必须阻止端口81。

另一种可能性是贵公司的代理会删除或阻止某些标题,这些标题可以解释为什么Access-Control-Allow-Origin: www.example.com在您的回复标题中不存在

相关问题