我得到了一个存储名称和其他一些字符串属性的数组。
我也有“ImagePath”。我找到的解决方案是在图像源中,我们在源周围使用方括号 []。
我确实知道这意味着属性绑定,但是为什么我们要在 src 周围使用它。除了这个用例之外,了解财产的最佳方式是什么。
Export class RecipeListComponent implements OnInit {
recipes: Recipe[] = [
new Recipe('A Test Recipe', 'This is simply a test', 'https://upload.wikimedia.org/wikipedia/commons/1/15/Recipe_logo.jpeg'),
new Recipe('A Test Recipe', 'This is simply a test', 'https://upload.wikimedia.org/wikipedia/commons/1/15/Recipe_logo.jpeg')
];
<span class="float-right">
<img [src] ="recipe.imagePath"
alt="{{ recipe.name }}"
class="img-fluid" style="max-height: 50px;">
</span>