如何用图像实现 Angular 7 下拉菜单?

gau*_*ikh 4 html css typescript angular-material angular

我正在创建 Angular 7 应用程序,并使用 mat-select 进行下拉。现在我想在每个项目中添加图像mat-select

见下图:

在此输入图像描述

Akb*_*bal 5

mat-option确保您在;中提供的数组中有图像 然后,创建一个图像标签并为其提供图像源。

相关HTML

<h4>Basic mat-select with images</h4>
<mat-form-field>
  <mat-label>Favorite food</mat-label>
  <mat-select>
    <mat-option *ngFor="let food of foods" [value]="food.value">
      <img src='{{food.img}}'> {{food.viewValue}}
    </mat-option>
  </mat-select>
</mat-form-field>
Run Code Online (Sandbox Code Playgroud)

相关TS

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

export interface Food {
  value: string;
  viewValue: string;
  img: string;
}

@Component({
  selector: 'select-overview-example',
  templateUrl: 'select-overview-example.html',
  styleUrls: ['select-overview-example.css'],
})
export class SelectOverviewExample {
  foods: Food[] = [
    { value: 'steak-0', viewValue: 'Steak', img: 'https://www.akberiqbal.com/favicon-32x32.png' },
    { value: 'pizza-1', viewValue: 'Pizza', img: 'https://www.akberiqbal.com/favicon-16x16.png' },
    { value: 'tacos-2', viewValue: 'Tacos', img: 'https://www.akberiqbal.com/favicon-96x96.png' }
  ];
}
Run Code Online (Sandbox Code Playgroud)

完整的工作堆栈闪电战在这里