由于 jsonpolling 弄乱了我的服务器,我想禁用它。我在互联网上找到了这个代码:
socket.set('transports', [ 'websocket', 'htmlfile', 'xhr-polling' ])
我把它放到“sockets.on(”connection“...”),所以它看起来像这样:
io.sockets.on('connection', function(socket) {
socket.set('transports', [ 'websocket', 'htmlfile', 'xhr-polling' ],function(){
....code that I had directly in io.sockets.on("connection"...
});
});
但是 jsonpolling 似乎仍然处于活动状态,因为它仍然会弄乱我的服务器!我能做些什么来防止这种情况发生?