无法在离子选件内显示图像

时间:2020-02-08 15:32:12

标签: ionic-framework ionic3 ionic-native

我需要在ion-option的每个名称前添加图像。以下是我尝试过的方法,但没有任何效果。

home.ts

this.lists=res.server_response;
    for(var i = 0; i < this.lists.length; i++){
    this.id = this.lists[i].id;
    this.name = this.lists[i].name;
    this.dept = this.lists[i].dept;
    this.image = this.lists[i].img;

html

    <ion-select class="mselect" placeholder="Who Are You Looking For?" name="staffName" #staffName >
        <ion-option *ngFor="let list of lists" value="{{ list.id }}">
<ion-avatar item-start><img class="uimg" src="{{ list.image }}" /></ion-avatar> {{ list.name }} 
</ion-option>
        </ion-select>

我该如何在离子方面实现这一目标?

0 个答案:

没有答案