我嘗試使用JSON文件,JSON文件與我的HTML文件存在於同一個文件夾中。無法訪問JSON文件存在於同一個文件夾中:AngularJS
<html ng-app="countryApp">
<head>
<meta charset="utf-8">
<title>Angular.js Example</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.1/angular.min.js"></script>
<script>
var countryApp = angular.module('countryApp', []);
countryApp.controller('CountryCtrl', function ($scope, $http){
$http.get('countries.json').success(function(data) {
$scope.countries = data;
});
});
</script>
</head>
<body ng-controller="CountryCtrl">
<table>
<tr>
<th>Country</th>
<th>Population</th>
</tr>
<tr ng-repeat="country in countries">
<td>{{country.name}}</td>
<td>{{country.population}}</td>
</tr>
</table>
</body>
</html>
但是,當我打開我的HTML文件,我得到一個控制檯錯誤說:
的XMLHttpRequest無法加載文件://countries.json/。交叉源 請求僅支持協議方案:http,data,chrome, chrome-extension,https,chrome-extension-resource。