我有一个奇怪的问题。我可以使用$ http.get在www.w3schools.com/angular/customers.php中获取json。但是,当我将相同的json添加到我的服务器中的html页面(没有任何html标签)时,我无法获取它。下面是我用于http.get的代码:
var app = angular.module('myApp', []);
app.controller('customersCtrl', function($scope, $http) {
$http.get("http://www.xxxxxxx.com/temp/htmlpage1.html")
.success(function(response) {alert('success');$scope.names = response.records;})
.error(function(response) {alert('error');});
});
控件始终转到错误块。请帮助。