2014-12-23 77 views
0

的中間開始UI引導傳送帶我有兩個角引導傳送帶陣列如何從陣列

$scope.slidesTwo = [ 
{image: 'http://placehold.it/250x200',smallImage:'http://placehold.it/300x200'}, 
{image: 'http://placehold.it/245x215',smallImage:'http://placehold.it/400x200'}, 
{image: 'http://placehold.it/240x210',smallImage:'http://placehold.it/300x300'} 
    ]; 

我想2從索引0的任何指針開始從索引1和第二傳送帶上的第一轉盤上在如何實現它?

這裏是鏈接http://plnkr.co/edit/bKt3QZlGO3aEpXlejgpp?p=preview

回答

0

您可以指定自定義過濾函數:

控制器:

$scope.filterFn = function(value, index) { 
    return index !== 0; 
    } 

HTML

<slide ng-repeat="slide in slidesTwo | filter : filterFn" active="slide.active"> 

http://plnkr.co/edit/bAIGpnS9ssBmYfIEFY8J?p=preview

注:在過濾器性能指標只在角1.3.x中可用,如果你有沒有可能更新角版本,你必須找到價值指數在過濾功能

+0

感謝這有助於 – whippits