2017-10-03 11 views
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> 

答えて

2

に今持っているもので、これはこのようなものになりますあなたのケースではdom-repeat、おそらくdom-if

です:

<template is="dom-repeat" items="[[consultants]]" as="consultant"> 
    <div class="consultant"> 
    <p>[[consultant.displayname]]</p> 
    <template is="dom-if" if="[[consultant.phoneNumber]]"> 
     <p>☎ [[consultant.phoneNumber]]</p> 
    </template> 
    <template is="dom-if" if="[[!consultant.phoneNumber]]"><br></template> 
    <template is="dom-if" if="[[consultant.email]]"> 
     <p class="email"> 
     <span class="icon-envelope"></span> 
     <a href="mailto:[[consultant.email]]">[[consultant.email]]</a> 
     </p> 
    </template> 
    <template is="dom-if" if="[[!consultant.email]]"><br></template> 
    </div> 
</template>