SSE `this.eventSource.onmessage` call fails. Error `quot;EventSource#39;s response has a MIME type (quot;application/jsonquot;) that is not quot;text/event-streamquot;(SSE`this.ventSource.onMessage`调用失败。错误`事件源的响应具有不是文本/事件流的MIME类型(应用程序/jsonquot;)。) - IT屋-程
问题描述
ANGLE Server Sent事件this.eventSource.onmessage
调用失败,错误"EventSource's response has a MIME type ("application/json") that is not "text/event-stream". Aborting the connection."
我在Chrome Dev工具(附图)中看到有两个Content-Type
被返回。
后端代码:SpringReader/Rest
@GetMapping(value="/events",produces = "text/event-stream;charset=UTF-8")
public Flux<ConsumerEvent> getProductEvents(){
return kafkaService.getReceiverRecordAllFlux()
.map(record->
new ConsumerEvent(record.topic(),record.value())
);
}
}
前端:角度
public startKafkaTopicInfoEventSource(): void {
let url = BASE_URL;
this.eventSource = new EventSource(url);
this.eventSource.onmessage = (event) => {//Error: EventSource's response has a MIME type ("application/json") that is not "text/event-stream". Aborting the connection
this.zone.run(() => {
// some code here
})
}
// other code here
}
方法this.eventSource.onmessage
给出错误EventSource's response has a MIME type ("application/json") that is not "text/event-stream". Aborting the connection.
任何帮助都是最好的!
推荐答案
我使用ASP.Net(和NodeJS)时遇到了同样的问题。
我不知道这是否有帮助,但我体验到,如果您使用Moesif Origin & CORS Changer(在标准配置中,我没有测试自定义配置),某些标头会被插件(至少是Content-Type和X-Content-Type-Options)添加或覆盖(选择了一个)。
因此,可能是您在Chrome中安装的某个插件导致了这一问题。尝试在不同的浏览器中运行或不使用插件。
希望我能帮助别人,祝你有愉快的一天!
这篇关于SSE`this.ventSource.onMessage`调用失败。错误`事件源的响应具有不是文本/事件流的MIME类型(应用程序/json";)。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:SSE`this.ventSource.onMessage`调用失败。错误`事件源的响应具有不是文本/事件流的MIME类型(应用程序/json";)。
基础教程推荐
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01