为什么不起作用?

时间:2016-10-10 12:27:47

标签: javascript html node.js socket.io

我是node.js和socket.io中的新手,当我尝试在控制台中运行app.js(使用节点app.js)时,它只显示“正在监听3000”并且当我输入索引时.html并在控制台中刷新它并没有告诉我用户连接here is my folder``。 这是app.js:

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){
console.log('a user connected');
});

http.listen(3000, function(){
 console.log('listening on *:3000');
 });

这里是index.htm`

     <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>
       </body>
     </html>
     </html>
</html>`

当我进入页面(或刷新页面)时,我想要在控制台“连接用户”中写信给我。

1 个答案:

答案 0 :(得分:0)

如果你继续阅读你正在阅读的同一个教程,你会看到它们包括前端socket.io库。所以,继续阅读部分&#34;集成Socket.IO&#34;

链接:http://socket.io/get-started/chat/