无法在angularJS中打开json文件

时间:2017-06-27 12:43:04

标签: javascript angularjs json web

我在js文件和index.html文件所在的目录中有一个本地json文件。我使用firefox查看我的网站,因为chrome不允许跨源http请求。这是我的角度代码:

(function(){
var app = angular.module('contactPage',[]);

app.controller('contactController',['$scope','$http',function($scope,$http){


    $http.get('contacts.json').then(function(data){
        $scope.contactList = data;
    })
}]);

})();

但这在Firefox中给了我两个错误: XML解析错误,JSON文件的语法位置错误以及“可能未处理的拒绝”。

Screenshot of errors

0 个答案:

没有答案