請參見下面的代碼:如何獲得固定的JSON API數據的數量angularjs
var app = angular.module('myApp', []);
app.controller('customersCtrl', function($scope, $http) {
$http.get("http://www.w3schools.com/angular/customers.php")
.then(function (response) {
$scope.names = response.data.records;
});
});
在上面的例子我們寫的代碼用於獲取的所有數據在記錄存儲在名但要求前5位數據應存放在名稱。
預先感謝
所以將你的API總是返回回完整數據,然後你需要切片數據,並存儲只有第5個項目?或者你正在改變你的API? –
不,我不想更改API。如果可能從json api獲得5個數據 –
你能分享你從API獲得的json格式嗎?它是一個數組還是對象? –