我使用Flask制作了一个REST API,它在http://localhost:5000/api/person上提供了一个JSON响应,给出了SQLite数据库中所有人的ID,姓名和电话号码。 http://localhost:5000/api/person/Name_of_person提供与人名相对应的JSON响应。我想使用AngularJS来使用API,这样我就可以输出所有人的姓名以及他们的电话号码。
的index.html
<!DOCTYPE html>
<html>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<body>
<div ng-app="myApp" ng-controller="customersCtrl">
<ul>
<li ng-repeat="x in myData">
{{ x.id }} + ', ' + {{x.name }} + ',' + {{x.phone}}
</li>
</ul>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('customersCtrl', function($scope, $http) {
$http.get("http://localhost:5000/api/person").then(function (response) {
$scope.myData = response.data.objects;
});
});
</script>
</body>
</html>
http://localhost:5000/api/person
的内容{
"num_results": 5,
"objects": [
{
"id": 24,
"name": "Name2",
"phone": "9999192938"
},
{
"id": 23,
"name": "Name3",
"phone": "9999192938"
},
{
"id": null,
"name": "Name4",
"phone": "9999192938"
},
{
"id": 21,
"name": "Name5",
"phone": "9999192938"
},
{
"id": null,
"name": "Name6",
"phone": "9999192938"
}
],
"page": 1,
"total_pages": 1
}
我很确定我的语法是正确的但我没有得到index.html的输出。任何人都可以解释我哪里出错了吗?是因为它在本地服务器上并且无法检索数据吗?
答案 0 :(得分:0)