如何使用没有服务器的本地文件使用Angular.JS调用JSON文件

时间:2015-04-07 18:23:13

标签: json angularjs

这是我的控制器代码:

angular.module('navApp', []).controller('blogCtrl', function($scope, $http) {
    $http.get("../json/blogs.json").success(function(response) {$scope.blogs = response.blogs;});
});

如何加载blogs.json? Blogs.json包含两个“博客”。

1 个答案:

答案 0 :(得分:0)

由于其策略,Chrome显然不允许本地文件访问,因此我可以在Firefox中运行此请求。