使用* ngFor with index,我没有得到正确的索引(onEditorCreated($ event,i)ngx-Quill

时间:2018-04-07 22:49:35

标签: angular editor quill

我有几个帖子使用* ngFor显示在屏幕上。我试图使用Jquery来定位前两个帖子的CSS。 每个帖子我都创建了一个quill-editor,我希望使用(onEditorCreated($ event,i)来获取每个帖子的索引。 然而,即使{{i}}显示正确的顺序(idPost0-idPost1-idPost2等),当我在console.log中的方法onEditorCreatedPosted($ event,i)时i显示0,0,1,2, 0而不是0,1,2,3,4,5。

知道造成这种行为的原因是什么?

<div class ="smallwrapper2" id="{{'idPost'+i}}"  *ngFor="let key of publicPostContent; let i = index" > 
 {{i}}
<button class="textBoxDeveloper" name="textBoxDeveloper" (click)="selectPublicDeveloper(key._id, key.grade)">  
<quill-editor name="editor2" 
     [style]="{'width' : 'auto', 'font-size': '10px'}"
     [(ngModel)]="key.firstLineOfText"                (onEditorCreated)="this.onEditorCreatedPosted($event, i)"
     theme="bubble"  [modules]="{toolbar: false}"  >
     <div style="overflow:hidden"></div>
</quill-editor>     
</button>
      

0 个答案:

没有答案