Search code examples
typescriptangularecmascript-6ecmascript-5

How to render text/html response ,using angular2 js


 @Component({
     selector: 'app-data',
     template: <div><input type="button" (click)="getData();" value="GET DATA"/>    </div> <div id="child">{{data}}</div>
})


Solution

  • You can use the Angular 2 innerHTML binding:

    <div [innerHTML]="yourHtmlContentVariable"></div>