如何在角度6中使用循环选择下拉列表?

问题描述 投票:0回答:2

我有一个数组作为集合,我想将其加载到下拉列表中,并且我想要在某些条件下进行默认选择,但我不知道如何实现这一点。

app.component.ts

import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-commingsoon',
  templateUrl: './commingsoon.component.html',
  styleUrls: ['./commingsoon.component.css']
})
export class CommingsoonComponent implements OnInit {
  public collection = [];
  constructor() {
    for(let i = 1; i<=10 ; i++) {
      this.collection.push(`Angular: ${i}`);
    }
   }

  ngOnInit() {
  }

}

app.component.html

<select name="" id="" style="position:relative; left: 100px">
    <option *ngFor="let i of collection;" value="{{i}}" [selected]="i == Angular: 2">{{ i }}</option>
</select>

我希望下拉列表应选择当 i == Angular: 2 时的值

angular angular6
2个回答
11
投票

这是典型的使用方式

ngModel
如果您要稍后处理选定的值,这会更方便。

<select [(ngModel)]="selectedValue">
  <option *ngFor="let option of options" [value]="option.id">
    {{option.name}}
  </option>
</select>

https://stackblitz.com/edit/angular-njs3tz


7
投票

报价缺失,请尝试

i == 'Angular: 2'

或者,如果您只对索引感兴趣:

<option *ngFor="let i of collection; let j = idx" value="{{i}}" [selected]="j === 2">{{ i }}</option>

© www.soinside.com 2019 - 2024. All rights reserved.