8

我正在经历这个教程。我将此设置作为 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;
})

这是我的文件夹结构的图像

在此处输入图像描述

4

1 回答 1

16

将此添加到项目的 web.config 中:

<system.webServer>
    <staticContent>
        <mimeMap fileExtension=".json" mimeType="application/json" />
    </staticContent>
</system.webServer>
于 2013-11-08T19:42:15.067 回答