Skip to content
Advertisement

How to render html data from JSON in a modal angular 8

I have a html table stored in a database table. I am fetching the html table using a get request, but for some reason, I cant seem to render the html from the api to the modal.

How I am fetching the html table from the api

JavaScript

my angular modal where am trying to render the html table

JavaScript

the html table being fetched from the api

JavaScript

when I try to console log I get

JavaScript

what am I doing wrong. Thank you in advance

Advertisement

Answer

Nothing wrong, just that it seems like the method this.service.getHtmlReport(code) returns an Observable.

This will log the actual value:

JavaScript

Is it recommended where possible to handle the subscription using the async pipe. I put it inside OnInit but that is just for the sake of example, you can use it where you need:

JavaScript

and inside the template:

JavaScript

If you haven’t read about observables these resources might be useful for start:

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement