当前位置: 代码迷 >> 综合 >> Resource interpreted as Document but transferred with MIME type application
  详细解决方案

Resource interpreted as Document but transferred with MIME type application

热度:90   发布时间:2023-12-27 08:49:42.0

今天在前台展示页面的时候出现了这个警告,大概意思就是页面需要返回text/html格式的数据,而后台返回的是json数据格式的。

我看了后台返回的数据

@ResponseBody
@RequestMapping(value = "form", produces = "application/json;charset=utf-8")

produces 表示服务器指定返回的内容类型,仅当request请求头中的(Accept)类型中包含该指定类型才返回;

而且@ResponseBody注解的作用是:使该方法的返回值直接写入response的body中,不会走视图解析器,所以返回的数据就是application/json的。

 

  相关解决方案