Gia*_*uck 39 html5 internet-explorer server-sent-events internet-explorer-11
我正在使用HTML5 Server-Sent Events,如下所示:
SSEUpdate = new EventSource("http://example.com/update.php");
SSEUpdate.onmessage = function(e){
console.log(e.data);
}
Run Code Online (Sandbox Code Playgroud)
它在IE11中不起作用.(控制台出错:)'EventSource' is undefined是否有相同的Microsoft等价物,或者我必须做一些完全不同的事情?
Moo*_*man 72
总之,没有.
Microsoft未在任何版本的IE中包含SSE或等效的SSE.IMO,你有两个不错的选择:
if ("EventSource" in global) return;,它只会在不支持的浏览器中运行EventSource.ws://协议),但它在IE10和11中工作,并提供更多选项,如双向通信.| 归档时间: |
|
| 查看次数: |
26553 次 |
| 最近记录: |