我想使用以下代码访问 angular.js 中的 json 文件,但由于下面提到的错误,我无法访问该代码。帮助将不胜感激。!
模块 :
angular.module("demoApp", ['demoApp.factory','demoApp.controllers']);
工厂:
angular.module('demoApp.factory', []).
factory('getJsonDataFactory',function($http){
return{
getData : function() {
return $http.get('mapData.json');
}
}
});
控制器 :
angular.module('demoApp.controllers', []).
controller('GetJsonController', function($scope,$http,getJsonDataFactory) {
$scope.markers = [];
getJsonDataFactory.getData().success(function(data){
$scope.photos=data;
});
});
错误:在 Firefox 中:
"Access to restricted URI denied" code: "1012"
return logFn.apply(console, args)
在 Chrome 中:`
Origin null is not allowed by Access-Control-Allow-Origin.