简体   繁体   中英

Chat with express.io

I have two files, one named index.js and the other index.html. When I press the send button the message doesn't appear

The code of the file index.js is the following:

    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);

The code of the file index.html is the following:

<!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>

write this instead

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);
  });
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM