我可以像使用 php 那样使用 nodejs 更改超级全局变量吗?

Can I change super global variables with nodejs like I do with php?

我可以像使用 php 一样使用 nodejs 更改超级全局变量吗?

如果没有,那么谁能给我指点一个关于如何从客户端进行跨域 http 请求的简单教程?您知道,阻止 ajax 到另一个域的 CORS 吗?

如果您使用的是像 Express 这样的框架,CORS can be done like this:

app.use(function(req, res, next) {
  res.header("Access-Control-Allow-Origin", "*");
  res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
  next();
});

app.get('/', function(req, res, next) {
  // Handle the get for this route
});

app.post('/', function(req, res, next) {
 // Handle the post for this route
});

或者,使用 cors 中间件更简单。

或者,要自己滚动,您可以使用 this gist 作为起点:

if (req.method === 'OPTIONS') {
      console.log('!OPTIONS');
      var headers = {};
      // IE8 does not allow domains to be specified, just the *
      // headers["Access-Control-Allow-Origin"] = req.headers.origin;
      headers["Access-Control-Allow-Origin"] = "*";
      headers["Access-Control-Allow-Methods"] = "POST, GET, PUT, DELETE, OPTIONS";
      headers["Access-Control-Allow-Credentials"] = false;
      headers["Access-Control-Max-Age"] = '86400'; // 24 hours
      headers["Access-Control-Allow-Headers"] = "X-Requested-With, X-HTTP-Method-Override, Content-Type, Accept";
      res.writeHead(200, headers);
      res.end();
} else {
//...other requests
}