由于某种原因不显示图像

时间:2016-03-14 00:46:02

标签: meteor

我的文档中有screenShots元素,它是一个尝试在前端显示的URL数组。这是我的代码

<div class="col-md-4">
    {{#each product.screenShots}}
         <img src="{{product.screenShots}}" alt="">
    {{/each}}
</div>

这是我在客户方面所得到的。

this is what i get int he client side.

我可以在输入网址时看到图片存在。 我在这做错了什么?

1 个答案:

答案 0 :(得分:2)

由于您说screenshots是一系列网址,因此您需要更改src这样的属性,

<div class="col-md-4">
    {{#each product.screenShots}}
         <!-- Assuming product.screenShots = ["http://url-to-image1.com", "http://url-to-image2.com"] and so on..
         <img src="{{this}}" alt="">
    {{/each}}
</div>