This exception occurs in here.可以在IE11中重现它。到目前为止,我还没有找到问题的原因。有什么想法为什么会造成这种情况吗?



该网站在Azure网站平台上运行,并使用ASP.NET MVC 5。

最佳答案

通过添加固定

<staticContent>
  <mimeMap fileExtension=".woff" mimeType="application/octet-stream" />
</staticContent>


 <system.webServer>

在web.config中。

编辑:

为了防止后续版本出现任何问题,我建议您这样做:
<staticContent>
      <remove fileExtension=".woff" />
      <mimeMap fileExtension=".woff" mimeType="application/octet-stream" />
</staticContent>

08-16 21:04