我的应用程序在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!");
});
感谢任何帮助。提前谢谢!