这是我的html
<div id="setImgWrap">
<!-- Here append image will be show -->
</div>
在这里我从 js 追加
this.addedImages = {
imageURL : self.downloadURL
};
this.$.setImgWrap.append('<iron-image src="' +[[this.addedImages.imageURL]] + '"></iron-image>');
我想在浏览器上显示所有上传的图像,但这会在双引号中显示整个标签。我怎样才能显示多张图片?