Angular 5-绑定不能包含分配

时间:2018-07-25 13:34:54

标签: angular5

<li class="tabRow tabRowLeft" *ngFor="let gene of filteredgene = (seq.genes) | limitTo:filteredgene.length/2+filteredgene.length%2">
    <div class="displayFlex" (click)="showGeneRecord(gene.geneName,'ATTRIBUTE','.addPopup.attributeRisk')">
      <div class="tabCell">
    <div class="cellItem displayFlex">
    <h4 class="flex1">{{gene.geneName}}</h4>
    </div>
    </div>
    <div class="tabCell">
    <div class="cellItem displayFlex">
     <h4 class="flex1">{{gene.geneScore}}</h4>
    </div>
    </div>
    </div>
</li>

我试图在filteredgene中获取值,然后在filteredgene上进行循环。我收到错误消息绑定不能包含分配。任何人都知道,我该怎么做才能解决这个问题。 为了限制,我也创建了一个管道。

0 个答案:

没有答案