以下是完整代码: - 的index.html
<!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="/socket.io/socket.io.js"></script>
<script src="https://code.jquery.com/jquery-1.11.1.js"></script>
<script>
$(function () {
var socket = io();
$('form').submit(function(){
socket.emit('chatIN', $('#m').val());
$('#m').val('');
return false;
});
socket.on('chatOUT', function(msg){
$('#messages').append('<li><span>'+msg+'</span></li>');
});
});
</script>
</body>
</html>
这是我的index.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.sockets.on('connection', function(socket){
socket.on('chatIN', function(msg){
console.log('message:'+ msg);
socket.emit('chatOUT:'+ msg);
});
socket.on('disconnect', function(){
console.log('user disconnected');
});
});
http.listen(3000, function(){
console.log('listening on *:3000');
});
我在尝试socket.io初学者教程时遇到了问题,我按照本教程进行了操作 https://socket.io/get-started/chat/
直到最后一件事,当他们构建聊天应用程序时,一切似乎都没问题,当你在文本框中点击提交时,它会更新元素的内容。
我可以看到消息在节点js控制台中打印,但在Chrome控制台中没有。我也尝试使用开发人员选项对其进行调试,但是控件在index.html中从不进入此方法。
socket.on('chat message', function(msg){
有人可以帮忙吗?我是socket.io和nodejs的新手。 感谢
答案 0 :(得分:2)
您正在从服务器发送错误的消息。
在服务器上,更改此内容:
socket.emit('chatOUT:'+ msg);
到此:
socket.emit('chatOUT', msg);
您的客户端代码正在侦听chatOUT
消息,因此需要发送确切的消息名称。这是匹配的客户端代码:
socket.on('chatOUT', function(msg){...}