2016-12-02 54 views
1

我列出了文件夾在AngularJS中以字母頭像的形式共享的用戶數量,同時我也知道如何將它限制到某個數字。但是,你能幫助我如何通過合計來顯示剩餘的條目嗎?例如,+1,+2限制ngrepeat中的項目數量,然後將所有其他項目合併爲一個使用angularjs

我附加了一個示例圖像和代碼,以在HTML文件中顯示頭像。 Sample Img

來自HTML頁面的標籤!

<td class="project-people" ng-repeat="emp in employee"> 

    <img alt="image" class="img-circle" src="img/a2.jpg" 
     tooltip-placement="top" uib-tooltip="1{{emp.employee_Name}} is the owner"> 

    <ng-letter-avatar shape="round" avatarcustombgcolor dynamic="true" 
     ng-repeat="usr in emp.employee_Shared |limitTo:2" data="{{usr.employee_Name}}"> 
    </ng-letter-avatar> 
</td> 

回答

2

您可以使用User_Shared.length - yourLimit

在這種情況下你的極限是2但可以將其存儲會更容易在變量中保持

<td class="project-people" ng-repeat="cli in client"> 
    <img alt="image" class="img-circle" src="img/a2.jpg" tooltip-placement="top" uib-tooltip="1{{cli.Owner_Name}} is the owner"> 
    <ng-letter-avatar shape="round" avatarcustombgcolor dynamic="true" ng-repeat="usr in cli.User_Shared |limitTo:2" data="{{usr.User_Name}}"> 
    </ng-letter-avatar> 
    <ng-letter-avatar shape="round" avatarcustombgcolor dynamic="true" data="cli.User_Shared.length - 2"></ng-letter-avatar> 
</td> 
+1

工作好一些modification.Anyways感謝爲了答案! – Sharath

相關問題