Is there a Microsoft equivalent for HTML5 Server-Sent Events?

前端 未结 2 1035
面向向阳花
面向向阳花 2020-12-23 00:09

I am using HTML5 Server-Sent Events as follows:

    SSEUpdate = new EventSource(\"http://example.com/update.php\");
    SSEUpdate.onmessage = function(e){
           


        
2条回答
  •  一生所求
    2020-12-23 00:29

    SSE native support for IE is not there. You can achieve same thing using polyfill

提交回复
热议问题