EventSource's response has a MIME type ("text/plain") that is not "text/event-stream". Aborting the connection.
时间: 2024-06-01 12:07:32 浏览: 266
response.setContentType()的作用及MIME参数详解
这个错误通常意味着服务器返回的 Content-Type 与客户端期望的不匹配。EventSource 期望服务器返回的 Content-Type 是 "text/event-stream"。你需要检查服务器返回的响应头中的 Content-Type 是否正确设置为 "text/event-stream"。如果不是,你需要在服务器上进行更改。如果是,那么可能是服务器端出现了其他问题导致这个错误。你可以尝试查看服务器端的日志以获取更多信息。
阅读全文