Angular-cli + ngx-bootstrap:acive multiple modals

时间:2017-07-19 10:55:17

标签: twitter-bootstrap angular ngx-bootstrap

我有一个for循环,在这个循环中我有多个元素,需要一个模态。

 <ng-container *ngFor="let nut of allnutrients; let i=index">
      <span class='info-link'><span (click)="staticModal.show()"  class="glyphicon glyphicon-info-sign"></span></span>

       <div class="modal fade" bsModal #staticModal="bs-modal" [config]="{backdrop: 'static'}" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
             ....
       </div>
 </ng-container>

但显然这段代码不起作用,因为#staticModal被多次定义。

如何以编程方式创建基于 {{nut.name |小写}} 或索引

0 个答案:

没有答案