3

我有一个在 Heroku 上运行的基本 Node.js 和 Socket.io 聊天应用程序,我想将它集成到我的主要 Rails 网站中。我知道这样做的方法是拥有两个独立的 Heroku 应用程序 - 一个用于 Rails,一个用于 Node.js。

它似乎不像将客户端 html 从节点应用程序移动到 rails 应用程序那么简单(在 'io.connect();' 中将其他应用程序的 url 提供给它)。

聊天应用服务器似乎会自动调用客户端 index.html 它自己的应用程序,并且不允许外部源连接到它。删除执行此操作的代码(标记如下)不会使其工作。

我对 Node.js 和 Socket.io 很陌生,我希望这对于专业人士来说可能是一个相对简单的修复。

我相信我在这里追求的功能适用于 Liam Kaufman 的优秀 rails/node.js/socket.io 示例 - 他的 node.js 服务器代码在这里:https ://github.com/liamks/Chatty-Node-Server/ blob/master/chat-server.js

我已经尝试将我的应用程序代码模拟为像他的一样,但还不能让它工作。例如,他似乎使用“http”服务器,而我的使用“express”服务器——我想知道这是否相关。

任何帮助将不胜感激。

更新: 好的,这是一个奇怪的转折点,感谢 redhotvengeance 在下面的回复,我已经完成了这个工作 - 服务器在 heroku 上,我的客户端 html 和 javascript 连接到它。太好了-下面的代码。但是,问题是客户端 html 文件仅在 Rails 应用程序之外时才连接!即在我的桌面上!!当我将它放在 rails 应用程序的 public/ 文件夹或我的本地主机上的视图中时,我什么也得不到!这是没有意义的。我检查了这不是因为我的资产管道中的任何其他随机错误的 javascript 通过创建一个新的 rails 应用程序并将 html 文件放入 public/ 文件夹中发生冲突 - 再次没有 - 只是一个没有连接的死 html 页面。有谁知道这里可能发生了什么?Rails 是否有一些安全功能可以阻止与外部服务器的连接或其他东西?

更新2:有人告诉我这与“同源政策”有关,我遇到了麻烦。有什么办法吗?利亚姆似乎没有这个问题。

客户:

<script src="http://calm-sands-3826.herokuapp.com/socket.io/socket.io.js" type="text/javascript"></script>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script>
    var socket = io.connect('http://calm-sands-3826.herokuapp.com');

    // on connection to server, ask for user's name with an anonymous callback
    socket.on('connect', function(){
        // call the server-side function 'adduser' and send one parameter (value of prompt)
        socket.emit('adduser', prompt("What's your name?"));
    });

    // listener, whenever the server emits 'updatechat', this updates the chat body
    socket.on('updatelog', function (username, data) {
        $('#log').append('<b>'+username + ':</b> ' + data + '<br>');
    });

    // listener, whenever the server emits 'updateusers', this updates the username list
    socket.on('updateusers', function(data) {
        $('#users').empty();
        $.each(data, function(key, value) {
            $('#users').append('<div>' + key + '</div>');
        });
    });

</script>
<div style="float:left;width:100px;border-right:1px solid black;height:300px;padding:10px;overflow:scroll-y;">
    <b>USERS</b>
    <div id="users"></div>
</div>
<div style="float:left;width:300px;height:250px;overflow:scroll-y;padding:10px;">
    <div id="log"></div>
</div>

服务器:

var port = process.env.PORT || 5001;

var io = require('socket.io').listen(parseInt(port));

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

// usernames which are currently connected to the chat
var usernames = {};

io.sockets.on('connection', function (socket) {

    // when the client emits 'adduser', this listens and executes
    socket.on('adduser', function(username){
        // we store the username in the socket session for this client
        socket.username = username;
        // add the client's username to the global list
        usernames[username] = username;
        // echo to client they've connected
        socket.emit('updatelog', 'SERVER', 'you have connected');
        // echo globally (all clients) that a person has connected
        socket.broadcast.emit('updatelog', 'SERVER', username + ' has connected');
        // update the list of users in chat, client-side
        io.sockets.emit('updateusers', usernames);
    });

    // when the user disconnects.. perform this
    socket.on('disconnect', function(){
        // remove the username from global usernames list
        delete usernames[socket.username];
        // update list of users in chat, client-side
        io.sockets.emit('updateusers', usernames);
        // echo globally that this client has left
        socket.broadcast.emit('updatelog', 'SERVER', socket.username + ' has disconnected');
    });
});
4

1 回答 1

5

如果您尝试将 Rails 应用程序中的页面连接到运行 socket.io 的单独 Node.js 应用程序,则完全跳过设置 Express。您并不希望真正从您的 Node 应用程序中提供页面,只需将用户连接到 socket.io 服务器。

假设您在 Heroku 上的 Node.js 应用程序名为:my-awesome-socket-app.

my-awesome-socket-app

var io = require('socket.io').listen(parseInt(process.env.PORT));

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

io.sockets.on('connection', function (socket) {
  socket.on('disconnect', function () {
    io.sockets.emit('user disconnected');
  });
});

然后,在您想要连接到 socket.io 服务器的 Rails 页面中:

<script src="http://my-awesome-socket-app.herokuapp.com/socket.io/socket.io.js"></script>
<script>
  var socket = io.connect('http://my-awesome-socket-app.herokuapp.com');
  socket.on('connect', function (data) {
    console.log('connected!');
  });
</script>
于 2012-09-16T16:57:58.473 回答