Asp.Net MVC中请求json文件时返回404 not found的解决办法
在web.config目录下添加
<system.webServer> <staticContent> <mimeMap fileExtension=".json" mimeType="application/json; charset=UTF-8" /> </staticContent> </system.webServer>
在web.config目录下添加
<system.webServer> <staticContent> <mimeMap fileExtension=".json" mimeType="application/json; charset=UTF-8" /> </staticContent> </system.webServer>