在第一次点击时,我的客户输出这个:
Object {hello: "world"}
然后在第二次点击:
Object {hello: "world"}
Object {hello: "world"}
并且随着随后的单击,为单击输出该行的次数增加一。
客户
var socket = io.connect('http://localhost');
$(document).on('click' , '#test', function(){
socket.emit('news', { my: 'data' });
socket.on('news', function (data) {
console.log(data);
});
});
服务器
var app = require('http').createServer(handler)
, io = require('socket.io').listen(app)
, fs = require('fs')
io.sockets.on('connection', function (socket) {
socket.on('news', function (data) {
socket.emit('news', { hello: 'world' });
console.log(data);
});
});