因此,我試圖連接到我使用Node.js,Socket.io和Express從外部Internet創建的服務器,不在我的本地網絡上。 這裏是我的代碼:無法連接到外部的Node.js/Socket.io/Express服務器
服務器:
var app = require('express')();
var http = require('http').Server(app);
var io = require('socket.io')(http);
app.get('/', function(req, res){
res.sendFile(__dirname + '/index.html');
});
io.on('connection', function(socket){
socket.on('chat message', function(msg){
io.emit('chat message', msg);
});
});
http.listen(3000,function(){
console.log('listening on *:3000');
});
客戶:
<!doctype 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>
<script src="https://cdn.socket.io/socket.io-1.2.0.js"></script>
<script src="http://code.jquery.com/jquery-1.11.1.js"></script>
<script>
var socket = io();
$('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>
我已經端口轉發端口3000 http://localhost:3000/作品,所以沒有連接上的其他計算機同一網絡,但我得到了我的外部IP:12.888.999.12(隨機IP)。我也有我的端口3000.當我在谷歌瀏覽器連接http://12.888.999.12:3000不起作用。
你是從自己的網絡嘗試,還是嘗試不同的地方?如果很多路由器沒有爲來自內部的流量進行端口轉發,並且應該返回到內部,我不會感到驚訝。 – jcaron
您正在本地主機上偵聽。嘗試'http.listen(3000,'0.0.0.0')'並確保你在TCP上完成端口轉發3000 –