1
現在、ポリマー1(または2)に対して角度1のフレームワークを使用しているページを書き直しています。私は、ng-repeatの同等物がポリマーに何であるかを知らない。これは私が何を探してるんですかアンギュラ1ng repeatと同等のポリマー
<div class="consultant" ng-repeat="consultant in consultants | limitTo:i">
<p>{{consultant.displayName}}</p>
<p ng-if="consultant.phoneNumber != undefined" >☎ {{consultant.phoneNumber}}</p>
<br ng-if="consultant.phoneNumber == undefined" />
<p class="email" ng-if="consultant.email != undefined" ><span class="icon-envelope"></span><a href="mailto:{{consultant.email}}"> {{consultant.email}}</a></p>
<br ng-if="consultant.email == undefined" />
</div>