如何在缺少对象的某些字段时使用ng-repeat

时间:2017-02-15 09:07:40

标签: javascript css angularjs ng-repeat

我在一个对象上使用Ang-JS的ng-repeat。我的代码就像,

<thead>
     <tr>
        <th style="text-transform: capitalize;">{{monthOrquarter || "month"}}
        </th>
        <th ng-repeat="tech in dashboardSrv.portfolioTech">{{tech}}
        </th>
      </tr>
</thead>
<tbody>
     <tr ng-repeat="(month, data) in dashboardSrv.portfolio[monthOrquarter || 'month']">
       <td class="rt-td1" style="border-bottom: 1px solid white !important; border-top: 2px;">{{month}}
       </td>
       <td class="rt-td1" style="border-bottom: 1px solid white !important; border-top: 2px;" ng-repeat="(tech, percentage) in data" ng-show="data.tech != 'total'">{{percentage  | number: 2}}%
       </td>
     </tr>
 </tbody>

现在dashboard.portfoliotech看起来像, dashboard.portfolioTech = { 'Contact Center EA', 'Contact Center HCS','Contact Center Other','Remote Expert'}

但是,dashboard.portfolio是一个看起来像的对象 Object structure

dashboardSrvvar s=this 但在UI中,我希望为每个月/季度显示这些(在每种技术下,相应的技术)。百分比值是正确计算的。月/季度显示正确。但是,数据没有正确显示(有时%是错误的技术)。我的UI看起来像, UI Screeshot

如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

在你的上一次重复中

ng-repeat="(tech, percentage) in data"

我建议重复使用portfolioTech。

ng-repeat="tech in dashboardSrv.portfolioTech"

并在随后的绑定中放置

{{data[tech] | number: 2}}%

简而言之:

这一行:

<td class="rt-td1" style="border-bottom: 1px solid white !important; border-top: 2px;" ng-repeat="(tech, percentage) in data" ng-show="data.tech != 'total'">{{percentage  | number: 2}}%
   </td>

成为这一行:

<td class="rt-td1" style="border-bottom: 1px solid white !important; border-top: 2px;" ng-repeat="tech in dashboardSrv.portfolioTech" ng-show="data.tech != 'total'">{{data[tech]  | number: 2}}%
   </td>