0

我需要将一些数据发送到不提供 javascript 的节点服务器。我运行服务器,但从来没有看到发送的 OPTIONS 并且 Chrome 拒绝我的 ajax 来自不同的域。]

我的服务器:

var http = require('http');
var router = require('router');
var routing = router();
var server = http.createServer(routing);
routing.options('*', function(request, response){
  console.log("OPTIONS BEING SENT");
  var origin = (request.headers.origin || "*");
  response.writeHead("204",
                     "No Content",
                     { "access-control-allow-origin": origin,
                     "access-control-allow-methods": "GET, POST, PUT, DELETE, OPTIONS",
                     "access-control-allow-headers": "content-type, accept",
                     "access-control-max-age": 10,
                     "content-length": 0
                   });
  response.end();
});

server.listen(7738);

我的 js 发送的是jqxhr = $.get('localhost:7738/post/trackEvent/' + eventName);,但我从来没有看到 OPTIONS 被发送。如果我使用另一个工具通过 OPTIONS 请求访问服务器,它会按预期工作。

更新:

使用 OPTIONS 请求访问服务器以http://localhost:7738/post/trackEvent/MoneyInTheBank返回以下内容:

HTTP/1.1 204 No Content
Content-Length: 0
Access-Control-Allow-Origin: *
Access-Control-Allow-Methods: GET, POST, PUT, OPTIONS
Access-Control-Allow-Headers: Content-Type, Accept
Access-Control-Max-Age: 10
Connection: close
4

1 回答 1

2

只有预检请求发送 OPTIONS 标头,并且由于您的 ajax 请求是具有简单标头的简单方法,因此不会将 OPTIONS 发送到服务器。

有关详细信息,请查看W3CMDN

于 2012-09-09T04:40:17.197 回答