错误"运输不明"在Sails中运行chrome

时间:2015-05-26 08:53:41

标签: javascript google-chrome socket.io sails.js

我正在编写风帆应用程序,当我在Firefox上运行应用程序时,一切正常,但是当我在Chrome上运行时出现错误"运输未知"。
我的配置socket.js:

  

运输:[' websocket'' flashsocket',' polling',' htmlfile'' xhr-polling&# 39;,' JSONP轮询']


我不知道为什么以及如何解决,请帮助我。

1 个答案:

答案 0 :(得分:0)

你试过这个吗?不适合我,但我在船上0.11.1 ...... https://github.com/balderdashy/sails/issues/2529

(来自git hub票) 修改config / socket.js如下:

transports: [
  'websocket',
  'htmlfile',
  'xhr-polling',
  'jsonp-polling'
]

以下

transports: [
  'websocket',
  'htmlfile', 
  'polling'
],