gpt4 book ai didi

javascript - 没有获取socket.io客户端传递的值

转载 作者:行者123 更新时间:2023-11-28 19:26:54 26 4
gpt4 key购买 nike

我被困在 socket.io 的开始部分关于发出事件的教程。在此之前,我确实在控制台中获得了用户已连接用户已断开。但是,在发出部分,我在控制台中没有收到 socket.io 客户端传递的任何消息

这是到目前为止的代码:

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.on('connection', function(socket){
socket.on('chat message', function(msg){
console.log('message: ' + msg);
});
});

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

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>

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

</head>
<body>
<ul id="messages"></ul>
<form action="">
<input id="m" autocomplete="off" /><button>Send</button>
</form>
</body>
</html>

如果您能指导我解决这个问题,我将非常感激。谢谢。

最佳答案

您的index.js 中缺少一行

而不是:

io.on('connection', function(socket){
socket.on('chat message', function(msg){
console.log('message: ' + msg);
});
});

你应该有:

io.on('connection', function(socket){
socket.on('chat message', function(msg){
console.log('message: ' + msg);
io.emit('chat message', msg);
});
});

发生的情况是,在 html 文件中,当您提交聊天消息时,您将其发送回服务器,而服务器需要将其发送回所有其他用户。如果没有 io.emit 行,所有其他用户都不会收到消息

*编辑:同样在您的 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>
</body>

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

它不起作用,因为您首先运行的脚本引用了尚不存在的 jQuery 元素。如果您想将正文保留在原来的位置,则需要将脚本包装在 $(document).ready 函数中。此外,您还忘记将消息附加到传入的聊天消息套接字上。

关于javascript - 没有获取socket.io客户端传递的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27711699/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com