gpt4 book ai didi

javascript - 以 Angular 获取api数据

转载 作者:行者123 更新时间:2023-11-30 09:46:24 25 4
gpt4 key购买 nike

我正在创建一个与 Angular 板球比赛信息相关的应用程序。在获取 api 响应时遇到问题。你可以查看 api 响应 here .控制台显示错误,请检查 here

这是我的代码:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>

<body>
<div class="container" ng-app="cricApp" ng-controller="cricCtrl">
<div class="form-group">
<h2>Your result</h2>
<table class="table table-striped">
<thead>
<tr><th colspan="4"><h4>Cricket Match Info</h4></th></tr>
<tr>
<th>Sno</th>
<th>unique_id</th>
<th>description</th>
<th>title</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="match in matchList | filter: nameFilter">
<td>{{$index + 1}}</td>
<td>
{{match.unique_id}}
</td>
<td>{{match.description}}</td>
<td>{{match.title}}</td>
</tr>
</tbody>
</table>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular.min.js"></script>
<script>
angular.module('cricApp', []).
controller('cricCtrl', function($scope, $http) {
$scope.matchList = [];
$http.get("http://cricapi.com/api/cricket").then(function (response) {
console.log(response);
$scope.matchList = response.data;
});
}
);
</script>
</body>
</html>

最佳答案

你的代码没问题,只需替换

 $scope.matchList = response.data;

$scope.matchList = response.data.data;

因为实际数据来自 response.data 中的数据。

关于javascript - 以 Angular 获取api数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38766547/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com