js vs2013中允许js访问json文件的解决方案
<?xml version="1.0" encoding="utf-8"?><!-- ?有关如何配置 ASP.NET 应用程序的详细信息,请访问 ?http://go.microsoft.com/fwlink/?LinkId=169433 ?--><configuration> ???<system.web> ?????<compilation debug="true" targetFramework="4.5" /> ?????<httpRuntime targetFramework="4.5" /> ???</system.web> ?<system.webServer> ???<staticContent> ?????<!--临时允许js访问.json文件--> ?????<mimeMap fileExtension=".json" mimeType="application/json"/> ???</staticContent> ?</system.webServer></configuration>
js ?vs2013中允许js访问json文件的解决方案
原文地址:https://www.cnblogs.com/zlp520/p/9584519.html