gpt4 book ai didi

angularjs - json 文件的 $http.get 总是返回 404

转载 作者:行者123 更新时间:2023-12-04 06:18:28 26 4
gpt4 key购买 nike

我想向我的应用程序添加一个配置 JSON 文件。
我已将它添加到我的项目中并尝试使用 $http.get 获取它:

$http.get('http://localhost/myProject/content.json').success(function (data) {
// Do stuff...
}).error((data, status, headers, config) => {
// Failure...
});

问题是每次我收到错误 404 时。

最佳答案

这是您的 Web 服务器 mime 类型配置的一个问题 - 它可能没有 json 。
尝试将文件扩展名重命名为 .txt 或 .html,它应该可以工作。

您还可以将 MIME 类型扩展添加到服务器。对于 IIS express,它是 web.config。例如:

 <staticContent>
<remove fileExtension=".json" />
<mimeMap fileExtension=".json" mimeType="application/json" />
</staticContent>

关于angularjs - json 文件的 $http.get 总是返回 404,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26699795/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com