-2
は、私は彼女の問題は、私は10自動$インデックス+ 1つの値1-10データの限界でテーブルにデータを表示することであるコードAngularjs NGリピートインデックス3
$scope.filteredItems = [];
$scope.itemsPerPage = 10;
$scope.itemdata = [];
$scope.currentPage = 1;
$scope.max = 5;
$scope.data_berita = function() {
$http.get('manajemen_data/berita/get_data').then(function(res)
{
$scope.itemdata = res.data;
$scope.currentPage = 1; //current page
$scope.entryLimit = 10; //max no of items to display in a page
$scope.filteredItems = $scope.itemdata.length; //Initially for no filter
$scope.totalItems = $scope.itemdata.length;
});
}
を有します。私はページを使用してページを移動したとき、2ページ目の$ index + 1を仮定します。
ok私はあなたの提案を試してみます –
ありがとう私はこの問題を解決しました:) –