我的名字是Catalin,我想构建一个Angular应用程序,该应用程序从localhost node.js服务器呈现数据。但我无法让它与服务器正常通信,页面仍然是空的。这是我的代码:
索引页:
<!DOCTYPE html>
<html ng-app="myApp">
<head>
<meta charset="utf-8">
<title>JS Bin</title>
<script src="angular.min.js"></script>
<script src="controller.js"></script>
</head>
<body ng-controller="MainController">
<div>
<h1>App</h1>
<h1>{{people.age}}</h1>
</div>
</body>
</html>
控制器:
var app = angular.module('myApp', []);
app.controller('MainController', ['$scope', '$http', function($scope, $http){
$http.jsonp('http://localhost:8080/person/?callback=JSON_CALLBACK').success(function(data){
$scope.people = data;
});
}]);
有什么想法吗?