似乎离子选择不支持显示图像。有什么办法可以使我可以在ion-select-option中显示包含图像的ion-avatar。
我当前的html代码:
<ion-select [(ngModel)]="this.selectedCountry" okText="Select" cancelText="Cancel" (ionChange)="getSelectedCountry(this.selectedCountry);">
<ion-select-option value="img1">
<ion-avatar style="height: 30px; width:30px;"> <img src="onlineImage"></ion-avatar>
IMAGE1
</ion-select-option>
<ion-select-option value="img2">
<ion-avatar style="height: 30px; width:30px;"> <img src="onlineImage"></ion-avatar>
IMAGE2
</ion-select-option>
</ion-select>