使用枚举数据作为[item]值

时间:2019-07-05 13:37:58

标签: enums angular7

在TypeScript和Angular中,可以使用枚举来 为选择控件提供数据。我想对ng-做同样的事情 选择,但似乎不可能。

ts文件中的

枚举:

导出const枚举searchOptions     {       国家,       顾客,       专家,       年,       其他     }

在html文件中选择:

          <ng-select class="form-control" id="options" name="options"
                  [items]="searchOptions.values()"
                  bindLabel="searchOption"
                  [(ngModel)]="selectedsearchoption"
                  (ngModelChange)="getData()"
                  >
          </ng-select>

由于它可以与TypeScript select一起使用,所以我希望它也可以在ng-select中工作:

  <select>
    <option *ngFor="let option of searchoption.values()"
            [ngValue]="searchoption[option]">{{option}}
    </option>
  </select>

0 个答案:

没有答案