在heroku上运行跨域node.js应用程序

时间:2014-11-17 21:01:15

标签: javascript node.js heroku socket.io cross-domain

从一些来源开始:

服务器 - > main.js

var express = require('express');
var http = require('http');
var sio = require('socket.io');

var app = express();
var server = http.createServer(app);
var io = sio.listen(server);

server.listen(process.env.PORT || 80, function (){
    var addr = server.address();
    console.log('App listening '+JSON.stringify(addr));
});

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

io.on('connection', function(socket){
console.log("user connected");

  socket.on('chat message', function(msg){
    io.emit('chat message', msg);
  });
});

客户 - >的index.html

<html>
  <head>
    <title>Socket.IO chat</title>
    <style>
      * { margin: 0; padding: 0; box-sizing: border-box; }
      body { font: 13px Helvetica, Arial; }
      form { background: #000; padding: 3px; position: fixed; bottom: 0; width: 100%; }
      form input { border: 0; padding: 10px; width: 90%; margin-right: .5%; }
      form button { width: 9%; background: rgb(130, 224, 255); border: none; padding: 10px; }
      #messages { list-style-type: none; margin: 0; padding: 0; }
      #messages li { padding: 5px 10px; }
      #messages li:nth-child(odd) { background: #eee; }
    </style>
  </head>
  <body>
    <ul id="messages"></ul>
    <form action="">
      <input id="m" autocomplete="off" /><button>Send</button>
    </form>
<!-- version2: <script src="http://localhost/socket.io/socket.io.js"></script> -->
    <script src="http://foxclick.heroku.com/socket.io/socket.io.js"></script>
    <script src="http://code.jquery.com/jquery-1.11.1.js"></script>
    <script>
//version2: var socket = io('http://localhost');
      var socket = io('http://foxclick.heroku.com');
      $('form').submit(function(){
        socket.emit('chat message', $('#m').val());
        $('#m').val('');
        return false;
      });
      socket.on('chat message', function(msg){
        $('#messages').append($('<li>').text(msg));
     });
   </script>
  </body>
</html>

我尝试了所有建议的解决方案,包括:

什么都不做:

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();
});

崩溃服务器:

io.configure(function () {
  io.set("transports", ["xhr-polling"]);
  io.set("polling duration", 10);
});

实验室功能不存在:

heroku labs:enable websockets

什么都不做:

var io = sio.listen(server, { origins: '*:*' });

我已经花了超过6小时。说实话:

  

客户 - 服务器 - 状态

     

localhost - localhost - working

     

localhost - heroku - 无法正常工作

     

heroku - heroku - 没有工作

     

heroku - localhost - working

Chrome控制台错误:

  

XMLHttpRequest无法加载{heroku} /socket.io/?EIO=3&transport=polling&t=1416257601410-0。请求的资源上不存在“Access-Control-Allow-Origin”标头。因此不允许原点'{heroku}'访问。

  

MLHttpRequest无法加载{heroku} /socket.io/?EIO=3&transport=polling&t=1416257732936-0。请求的资源上不存在“Access-Control-Allow-Origin”标头。因此,不允许原点“{localhost}”访问。

我绝望了,我会尝试任何解决方案和想法。

P.S。 Git回购:https://github.com/Foxbond/heroku-socket-test

编辑:

最奇怪的是,即使在同一主机上运行客户端和服务器,我也会收到关于原产地的错误:

  

XMLHttpRequest无法加载{heroku} /socket.io/?EIO=3&transport=polling&t=1416257601410-0。请求的资源上不存在“Access-Control-Allow-Origin”标头。因此不允许原点'{heroku}'访问。

0 个答案:

没有答案