XMLHttpRequest无法加载JSON文件

时间:2015-04-15 22:03:12

标签: javascript json angularjs http

我的应用程序在localhost上运行得非常好,但当我将它输出到我的/Build目录并尝试打开index.html文件时,我在尝试检索$http上的某些JSON数据时出现此错误{1}}:

XMLHttpRequest cannot load file:///Users/realph/Desktop/gulp-test/Build/js/data/results.json

知道为什么会这样吗?我以前从未遇到过这个问题而无法弄清楚我做错了什么......

我的$http服务如下所示:

$http.get('./js/data/results.json')
.success(function(data, status, headers, config) {
  $scope.data = data;
}).
error(function(data, status, headers, config) {
  console.log("Error loading results.json!");
});

感谢任何帮助。提前谢谢!

0 个答案:

没有答案