我有以下代码:
<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";
}
}
}
})
当联系人信息中没有照片时,将显示默认的“下载”,但是当联系人中有照片时,则不会显示,图像仅为灰色。有什么问题吗?