0

我正在尝试将一些数据从客户端发布到服务器端的脚本,但我仍然得到了这个 Eroor:

OPTIONS http://localhost/site/dbs.js Origin http://localhost:8080 is not allowed by Access-Control-Allow-Origin. jquery.js:9597
XMLHttpRequest cannot load http://localhost/site/dbs.js. Origin http://localhost:8080 is not allowed by Access-Control-Allow-Origin.

server.js没有运行 node.js(路径 /wamp/www/site/server.js)

var app = require('express')();
var server = require('http').createServer(app);
var mysql = require('mysql');
var port = process.env.PORT || 8080;
server.listen(port);

app.get('/', function(req, res){
  res.sendfile(__dirname + '/index.html');
});

app.get('/dbs.js', function(req, res) {
  res.sendfile(__dirname + '/dbs.js');
});

在带有ajax()的index.html中,我调用将一些数据发布到 dbs.js:

$.ajax({
        type: "POST",
        url: " http://localhost:80/site/dbs.js",
        data: "name="+username+"&pwd="password,
        succes: function(ret)
        {
          if(ret==0)
            ;
        }
      });

dbs.js:

var name;
var pwd;
function DbConn()
{
            var mydb = mysql.createConnection({
              host: 'localhost',
              user: 'root',
              password: 'admin123',
              database: 'users'
            });

            mydb.connect();

            var query = ('select passwd from peer where username=' + username);

            console.log(query);

            connection.end(function(err) {
              // The connection is terminated now
            });
}

如果我更改 URL 中的某些内容,我会收到错误:404 - 未找到“dbs.js”所有源都在一个文件夹中(wamp/www/site/)。您认为有必要在 dbs.js 中添加一些 XML 标头吗

4

2 回答 2

2

localhost、ajax 调用(和 chrome)存在一个常见问题,导致您遇到错误。请查看相关问题,尤其是这个问题:Origin http://localhost is not allowed by Access-Control-Allow-Origin

于 2013-05-10T21:35:14.293 回答
0

我不得不与这个错误作斗争一段时间,但最终征服了它。我收到此错误是因为我试图创建跨不同域的 SocketIO 连接。做了一些研究,结果发现浏览器不喜欢在渲染的 html 页面中发出任何跨域请求(ajax、sockets ...)。原来服务器(我们向其发出非法请求的服务器)必须允许此功能。

在您的情况下,在所有路由之前尝试一个快速中间件:

//Gloabal middleware
app.get('/*',function(request,response,next){
  response.header('Access-Control-Allow-Origin' , 'http://domain' );
  response.header('Access-Control-Allow-Credentials', true);
  next();
});
于 2015-12-07T01:20:09.793 回答