在Ionic中显示联系人照片时出现问题

时间:2019-01-04 04:25:32

标签: html css image ionic-framework contacts

我有以下代码:

<ion-img style="

  float:left;    
  border-radius: 50% !important;
  overflow: hidden;
  margin-right: 20px;

" width="40" height="40" src="{{contact.photos}}"></ion-img>

this.contact.find(["displayName", "phoneNumbers", "photos"], {multiple: true}).then((contacts) => {
 for (var i=0 ; i < contacts.length; i++){
    var contact = {};
    if (contacts[i].photos != null){

      contact["photos"] = contacts[i].photos[0].value;

    }else{
      contact["photos"] = "../../assets/download";
    }

  }      
 }
 })

当联系人信息中没有照片时,将显示默认的“下载”,但是当联系人中有照片时,则不会显示,图像仅为灰色。有什么问题吗?

0 个答案:

没有答案