代码之家  ›  专栏  ›  技术社区  ›  quma

角度5-在方法中使用选定选项

  •  0
  • quma  · 技术社区  · 6 年前

    我使用角5和角材料我的申请。 我确实有一个选择项[value]=“documentfileversion”。 我现在的问题是我怎样才能进入 文档文件版本 at方法 createPreview(文档文件,文档文件版本) .

    <tr *ngFor="let documentFile of foundedDocumentFiles; index as i; let last = last">
        <td>
            <mat-form-field style="max-width:40px;">
               <mat-select>
                   <mat-option *ngFor="let documentFileVersion of documentFile.documentFileVersions" [value]="documentFileVersion">
                               {{documentFileVersion.version.substr(8)}} - {{documentFileVersion.uploadTime}}
                   </mat-option>
               </mat-select>
            </mat-form-field>
        </td>
        <td>
            <mat-icon class="icon-hover" (click)="createPreview(documentFile, documentFileVersion)">airplay</mat-icon>
        </td>
    
    1 回复  |  直到 6 年前
        1
  •  0
  •   Sajeetharan    6 年前

    使用 [(ngModel)] 在那里你可以在组件中使用它

    <div>
      <mat-select [(ngModel)]="selected">
            <mat-option *ngFor="let documentFileVersion of documentFile.documentFileVersions" [value]="documentFileVersion">
              {{documentFileVersion.version.substr(8)}} - {{documentFileVersion.uploadTime}}
            </mat-option>
      </mat-select>
    </div>
    

    使用 this.selected 在你的方法里面