I trying to pass data from component to html in specific case :
i have in component method that get a id:
component.ts:
getId(){
this.id = 3; // example, i have in id number 3 (example)
}
component.html:
i have here a link url in iframe
<iframe width="1000" height="1000" src="http://....../watcher/ {{ here i want this.id}}" style="border:0"></iframe>
How i can pass this id in component.html?
.../watcher/{{ id }}not working?