访问azure上的本地json文件无法通过xmlhttprequest获取json数据,但在本地服务器上可以正常工作。
filepath = "/src/assets/config.json";
const xmlhttp = new XMLHttpRequest();
if (mimeType != null) {
if (xmlhttp.overrideMimeType) {
xmlhttp.overrideMimeType(mimeType);
}
}
xmlhttp.send();
if (xmlhttp.status == 200) {
return xmlhttp.responseText;
}
else {
return null;
}
答案 0 :(得分:0)
如果要访问Azure Web应用程序上的json文件,则应完成两个步骤:
<?xml version="1.0"?>
<configuration>
<system.webServer>
<staticContent>
<mimeMap fileExtension=".json" mimeType="application/json" />
</staticContent>
</system.webServer>
</configuration>
完成这两个步骤后,您可以访问json文件,请在此处尝试:https://ukwebapp716.azurewebsites.net/files/aaa.json