我正在尝试从AngularJS中的PODController中读取一个简单文件:
<script>
function PODController($scope, $http) {
$http.get('POD.json').success(function(data) {
$scope.results = data.results;
console.log("Here");
}).error(function(data, status, headers, config) {
console.log('error');
});
}
</script>
就像:Filtering by multiple checkboxes in AngularJS 和他在plunk上的例子:http://plnkr.co/edit/lNJNYagMC2rszbSOF95k?p=preview
但似乎我得到了:
XMLHttpRequest无法加载file:///Users/simon_zhu/Desktop/initializr/POD.json。仅支持HTTP的跨源请求。
两个文件都在同一个文件夹中,他似乎在他的例子中做得很好。有没有我错过的东西?