我已经实现了这个事件源。但是,正如我所使用的许多人建议的那样,它不能在IE上工作
建议的https://github.com/remy/polyfills/blob/master/EventSource.js这个 pollyfill for IE。
Is there a Microsoft equivalent for HTML5 Server-Sent Events?
在我需要这个EventSource的代码中,我这样做了:
require('../../../style/vendors/EventSource.js'); --> In My Import
ngOnInit()
{
let es = new EventSource('http://localhost:8080/api/message');
}
但是,再次在IE上运行时我得到的错误是我之前得到的:
"ReferenceError: 'EventSource' is undefined
at MessageComponent.prototype.ngOnInit (http://localhost:8080/js/app.8c7c223048ac731c6001.js:42531:10)
请告诉我是否遗漏了任何东西或Pollyfills的问题?