【问题标题】:Chat with express.io与 express.io 聊天
【发布时间】:2014-12-29 08:20:27
【问题描述】:

我有两个文件,一个名为 index.js,另一个名为 index.html。 当我按下发送按钮时,消息没有出现

文件index.js的代码如下:

    app = require('express.io') ();
    app.http().io();

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


app.io.on('connection', function(socket){
socket.on('chat message',function(msg) {
 app.io.emit('chat message' ,msg)
 });
console.log('a user connected');
socket.on('disconnect', function(){
console.log('user disconnected');
});
});


app.listen(3000);

文件index.html的代码如下:

<!doctype html>
<html>
<head>
<title>Example of 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>
</html>

【问题讨论】:

  • 删除套接字名称上的空格,例如“chat_message”

标签: node.js express socket.io express.io


【解决方案1】:

改写这个

var app = require('express')();
var server = require('http').Server(app);
var io = require('socket.io')(server);

server.listen(3000);

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

io.on('connection', function (socket) {
  socket.on('chat message', function (data) {
    socket.broadcast.emit('chat message',data);
  });
});

【讨论】:

  • express.io 仍在开发中,我建议使用 socket.io
猜你喜欢
  • 2010-12-26
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2012-07-30
  • 1970-01-01
相关资源
最近更新 更多