2016-12-02 5 views
-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を仮定します。

答えて

0

$index

($scope.itemsPerPage * $scope.currentPage)+1に設定してください。ページ2を表示したい場合は、(10 * 1)+ 1 = 11

+0

ok私はあなたの提案を試してみます –

+1

ありがとう私はこの問題を解決しました:) –