即使其 MIME 类型(“text/html”)不是有效的 JavaScript MIME 类型,仍已加载来自 因为它的 MIME 类型 "text/html" 不是 "text/css"。

参考了以下网址。

https://www.cnblogs.com/liuhui-03/p/6041948.html

在注册表中,比较一下图中与网页中是否一致。修改完成后,重启。

即使其 MIME 类型(“text/html”)不是有效的 JavaScript MIME 类型,仍已加载来自 因为它的 MIME 类型

过滤器处做了修改,如下:  

if (requestURI.contains(".css") || requestURI.contains(".js"))
    {
      chain.doFilter(req, response);
    }
    else
    {
      response.setCharacterEncoding("utf-8");
      response.setContentType("text/html;chartset=" + "utf-8");
      //EncodingRequest res = new EncodingRequest(req, "utf-8");
          chain.doFilter(req, response);
    }

问题解决。

你可能感兴趣的:(即使其 MIME 类型(“text/html”)不是有效的 JavaScript MIME 类型,仍已加载来自 因为它的 MIME 类型 "text/html" 不是 "text/css"。)