在Ionic框架中使用AngularJS。 在前端側的$範圍包含如何在HTML視圖中瀏覽AngularJs的列表?
包含運動的一個列表的對象用戶:
$ scope.user = {體育:{「運行」:真,「足球」 :true}}
一個名爲「matches」的列表,包含用戶列表並且每個用戶都有體育項目。例如:
matches = {userA:{...,sports:{「running」:true,「football」:true}}, userB:{...,sports:{「rugby」:true, 「足球」:真正}}
在Ÿ前端:
<ion-item class="item-thumbnail-left" ng-repeat="match in matches track by match.user.uid">
<img>
<span>{{match.user.firstname}} {{match.user.lastname}}</span>
<h3>{{match.user.position}} - {{match.user.lob}}</h3>
<h3>@{{match.company}}</h3>
<h4>{{match.score}} sport(s): </h4>
<h4 ng-repeat="sport in match.user.sports track by sport.id" style="float: left;">
{{sport.name}}
</h4>
</ion-item>
我想強調的體育項目,$ scope.user有共同之處每個$ scope.matches.user(比如讓我們說紅色的運動)。
你會建議我怎麼做?
感謝