我正在通过this教程。 我将此设置作为MVC4项目。这是我使用Vs 2013制作的第一个项目。
当我从phones.json收集json时,我正在迈出这一步。我收到了错误。
HTTP Error 404.3 -Not found
The page you are requesting cannot be served because of extension configuration.
If the page is a script, add a handler. If the file should be downloaded, add a MIME map.
这也是我对json文件的调用
$http.get('Data/Phones/phones.json').success(function (data) {
$scope.phones = data;
})
这是我文件夹结构的图像
答案 0 :(得分:16)
将其添加到项目的web.config:
<system.webServer>
<staticContent>
<mimeMap fileExtension=".json" mimeType="application/json" />
</staticContent>
</system.webServer>