Ionic2/3
Typescript
应用程序中:
我以这种方式成功显示我的图像:
<ion-item>
<ion-avatar item-start>
<img src="{{imgPath}}">
</ion-avatar>
</ion-item>
但如果我把它放在ion-img
中,它是空白方块:
<ion-img src="{{imgPath}}"></ion-img>
您应该指定图像尺寸。我在这里做了一个简单的例子
<ion-img width="80" height="80" src="{{test}}"></ion-img>
在 TS 文件中:
test ="https://i.imgur.com/FMo96fW.jpg";