标签: javascript server-sent-events
我有一台服务器,它以SSE客户端预期的格式发送数据,但Chrome会在收到Content-Type标头时立即关闭连接,并显示以下消息:EventSource's response has a MIME type ("text/plain") that is not "text/event-stream". Aborting the connection.
EventSource's response has a MIME type ("text/plain") that is not "text/event-stream". Aborting the connection.
即使服务器未设置适当的EventSource内容类型,是否可以使text/event-stream正常工作?
EventSource
text/event-stream
答案 0 :(得分:1)
抱歉,这是不可能的。实际上,浏览器不会跟随the standard。
(我认为新MIME类型的动机是代理可以识别它并以不同方式对待它。)