У меня есть шаблон, в котором есть несколько тегов image (img), все они повторяются в цикле foreach и модифицируют атрибут / свойства img src в файле машинописи.
HTML код:
<div *ngFor="let lt of list">
<div>
<a href="{{lt.url}}" target="_self">
<img mat-card-image name="{{lt.name}}" class="image" src="" placement="top" container="body">
</a>
</div>
<div>
<a href="{{lt.url}}" target="_self">
<img mat-card-image name="{{lt.name}}" class="image" src="" placement="top" container="body">
</a>
</div>
<div>
<a href="{{lt.url}}" target="_self">
<img mat-card-image name="{{lt.name}}" class="image" src="" placement="top" container="body">
</a>
</div>
</div>
код в машинописном файле,
ngOnInit() {
for (const lt of list) {
if (lt.title === 'xyz') {
lt.title = 'XYZ';
}
if (lt.appFlag) {
this.getIcon(lt.name);
}
}
}
private getIcon(name: string): void {
const imageUrl = this.service.createURL('abc');
// how to get img tag using property/attribute name(name here is unique item name) from HTML without using document.querySelector etc.
....
....
//const img = this.name.nativeElement.name;
//console.log('inside getIcon:img', img);
if (img) {
img['src'] = imageUrl;
}
});
}