stompjs实现websocket,EventSource's response has a MIME type ("application/json") that is not "text/event-stream". Aborting the connection.
时间: 2024-06-07 16:10:11 浏览: 299
这个错误可能是因为服务器返回的Content-Type类型不正确导致的。根据EventSource规范,服务器必须返回Content-Type: text/event-stream。而在你的情况下,服务器返回了Content-Type: application/json。
你可以检查一下服务器返回的Content-Type类型是否正确,如果不正确,可以尝试在服务器端修复这个问题。如果无法修改服务器端,你可以在前端使用WebSocket来代替EventSource,WebSocket没有Content-Type限制,可以接受任何类型的数据。
阅读全文