I'm calling a function to get a response from Http.get() request.
My data retrieve function is this one:
getCharacterDetail(characterId: number) {
return this.http.get(this.characterDetailApiUrl + characterId)
.subscribe(res =>
console.log(res.json())
);
}
Now I have to show this data into a modal window. No idea of what to do.