聊天在 localhost 上有效,在 Amazon EC2 上无效
索引.html
<html>
<head>
<title> Chat with socket.io and node.js</title>
<style>
#chat {
height:500px;
}
</style>
<head>
<body>
<h1 style="text-align:center;">CHAT</h1>
<div id="chat"></div>
<form id="send-message">
<input size="35" id="message"></input>
<input type="submit"></input>
</form>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="/socket.io/socket.io.js"></script>
<script>
$(function(){
var socket = io.connect();
var $messageForm = $('#send-message');
var $messageBox = $('#message');
var $chat = $('#chat');
$messageForm.submit(function(e){
e.preventDefault();
socket.emit('send message', $messageBox.val());
$messageBox.val('');
});
socket.on('new message', function(data) {
$chat.append(data + '<br />');
});
});
</script>
</body>
</html>
应用程序.js
var express = require('express'),
app = express(),
server = require('http').createServer(app),
io = require('socket.io').listen(server);
server.listen(3333);
app.get('/', function(req, res){
res.sendfile(__dirname + '/index.html');
});
io.sockets.on('connection', function(socket){
socket.on('send message', function(data){
io.sockets.emit('new message', data);
});
});
聊天示例取自http://www.youtube.com/watch?v=pNKNYLv2BpQ
节点-v v0.10.13
导轨'3.2.13'
当我运行 -> node app.js 时,我得到 -> info - socket.io started & 当我尝试访问 my_ip:3333 时 - 不走运。
任何帮助或提示将不胜感激。