有几天我一直试图让socket.io聊天示例从here开始工作。首先我通过自己输入一切来尝试它。但它没有用。之后,我尝试使用github中的文件。
部分
从github获取文件后,我尝试了它无法正常运行
npm install
它将依赖项下载到node_modules文件夹中,我也运行了
npm install --save express@4.10.2
npm install --save socket.io
我的任何命令都没有错误。
我用
启动程序node index.js
这给了我以下信息:
收听*:30000
如果我转到localhost:3000,我会看到示例中的聊天应用程序。但是在发布表单时不会显示任何消息。
但是,当我使用以下代码检查连接时:
io.on('connection', function(socket){
console.log('user connected');
});
它有效,所以问题在于发送数据。
此外,以下代码有效:
server index.js
io.on('connection', function(socket){
var tweet = {user: "nodesource", text: "Hello, world!"};
// to make things interesting, have it send every second
var interval = setInterval(function () {
socket.emit("tweet", tweet);
console.log("tweeting");
}, 1000);
socket.on("disconnect", function () {
clearInterval(interval);
});
});
客户端
socket.on("tweet", function(tweet) {
// todo: add the tweet as a DOM node
console.log("tweet from", tweet.username);
console.log("contents:", tweet.text);
});
因此,从服务器向客户端发送和接收工作。
我尝试了什么
什么有用
在学习本教程时,用户连接并登录控制台的部分可以正常工作。
我收到了聊天页面
控制台说它正在倾听
没有错误
有关如何解决此问题或如何找到问题的任何提示?
我的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="https://cdn.socket.io/socket.io-1.2.0.js"></script>
<script src="http://code.jquery.com/jquery-1.11.1.js"></script>
<script src="/socket.io/socket.io.js"></script>
<script>
var socket = io();
$('form').submit(function(){
console.log('Send message');
socket.emit('chat message', $('#m').val());
$('#m').val('');
return false;
});
socket.on('chat message', function(msg){
$('#messages').append($('<li>').text(msg));
});
</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.on('connection', function(socket){
socket.on('chat message', function(msg){
io.emit('chat message', msg);
});
});
答案 0 :(得分:1)
试试这个(版本&lt; = 0.8):
io.configure(function () {
io.set("transports", ["xhr-polling"]);
io.set("polling duration", 10);
});
对于版本1.0.x,它将类似于:
var io = require('socket.io').listen(http, {
"transports": ['websocket',
'flashsocket',
'htmlfile',
'xhr-polling',
'jsonp-polling',
'polling'],
"polling duration": 10
});
答案 1 :(得分:1)
此致:
io.on('connection', function(socket){
socket.on('chat message', function(msg){
io.emit('chat message', msg);
});
});
你确定它不应该是这个吗?
io.sockets.on('connection', function (socket) {
socket.on('chat message', function(msg){
io.sockets.emit('chat message', msg);
});
});