我们正在部署一个 azure 包,其中有一个静态 .json 文件。我们通过天蓝色模拟器和本地工作。但是当我们在 azure 中运行它时,我们的应用程序只会旋转。我们在 app.json 文件中得到 404。我们已经使用适当的处理程序将 mime 类型添加到我们的本地 iis,下面是我们在 web.config 中的内容。我们已经设置了 application/x-javascript 的 mime 类型,但这也不起作用。
<system.webServer>
<staticContent>
<mimeMap fileExtension=".json"
mimeType="text/html" />
</staticContent>
<handlers>
<add name="JSON"
path="*.json"
verb="*"
modules="IsapiModule"
scriptProcessor="%path%\asp.dll"
resourceType="Unspecified"
preCondition="bitness64" />
</handlers>
</system.webServer>