将数据从组件绑定到模板

时间:2018-11-01 14:19:20

标签: angular typescript ionic-framework

如果要查找图像,我想循环打印图像。

我的代码:

this.chatImage = this.responseData.Attatchments

for (let index = 0; index < this.chatImage.length; index++) {
    const element =  this.chatImage[index];

    if ( this.chatImage[index].FileData == "") {
        this.imgSrc = this.chatImage[index].FileData ;
    }
}

我的模板:

<img id="photo"[src]="imgSrc" />

我循环访问附件数组,并检查fileData是否具有值,然后 更改img的src以打印图像,但是我得到了src Unknown

0 个答案:

没有答案