IIS Express支持json

修改web.config文件,加入如下内容:

  <system.webServer>
    <staticContent>
      <mimeMap fileExtension=".json" mimeType="application/json" />
    </staticContent>
  </system.webServer>

即web.config完整内容如下:

<?xml version="1.0"?><configuration>
  <system.web>
    <compilation debug="true" targetFramework="4.0"/>
  </system.web>
  <system.webServer>
    <staticContent>
      <mimeMap fileExtension=".json" mimeType="application/json" />
    </staticContent>
  </system.webServer></configuration>




本文出自 “IT技术学习与交流” 博客,谢绝转载!

你可能感兴趣的:(json)