我需要对IE使用jsonp-polling,对Firefox使用xhr-polling,所以我 试图在客户端定义传输类型,如下所示:
if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)){ //test for Firefox/x.x or Firefox x.x (ignoring remaining digits);
var socket = io.connect(VG.NODE_SERVER_URL,{
transports:['xhr-polling']
});
} else if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){
var socket = io.connect(VG.NODE_SERVER_URL,{
transports:['jsonp-polling']
});
} else {
var socket = io.connect(VG.NODE_SERVER_URL);
}
我在Firefox上测试了它,并在socket.io-client lib上添加了日志记录。 在
https://github.com/LearnBoost/socket.io-client/blob/master/dist/socket.io.js#L1509
option.transports是["xhr-polling", "flashsocket", "htmlfile",
"xhr-polling", "jsonp-polling"]
,这是对的。但是,在
https://github.com/LearnBoost/socket.io-client/blob/master/dist/socket.io.js#L1679
我不知道为什么传输会变为["htmlfile", "jsonp-
polling", "xhr-polling"]
,这与我的顺序相同
在服务器端定义。
为什么不使用上一个选项?
答案 0 :(得分:19)
现在修复了socket.io版本0.9.6中的错误,我可以使用它,它可以正常工作:
socket = io.connect(HOST_REMOTE, {
transports: ['xhr-polling']
});
在1.0.0及更高版本中:
socket = io.connect(HOST_REMOTE, {
transports: ['polling']
});
答案 1 :(得分:1)
socket.io.client中存在错误。
因此您无法在客户端设置传输...
function Socket (options) {
this.options = {
port: 80
, secure: false
....
};
io.util.merge(this.options, options);
....
};
应为io.util.merge(this.options, options,0);....