标签:
在IIS(Express)中默认不支持Json格式数据,数据总是无法加载,后来查了一下才知道是MIME映射的问题,所以需要在站点根目录下新建或者修改 Web.config
文件解决,添加或者修改 <system.webServer>
节点,方法如下:
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="false" targetFramework="4.0" />
</system.web>
<!-- 为IIS(Express)中的站点添加MIME映射 -->
<system.webServer>
<staticContent>
<mimeMap fileExtension=".json" mimeType="application/x-javascript" />
</staticContent>
</system.webServer>
</configuration>
他妈的,浪费了我一个多小时,记录下。
标签:
原文地址:http://www.cnblogs.com/zhyp/p/5594359.html