The use case
I would like to debug the variables inside the html code of my Angular 11 web app.
I manage to get the ctx.ngForOf
variable but that all I can do.
Something is missing in my procedure but I can't find what is missing.
Thank you for the time you will invest in answering to this question
The tools
I am using
- Visual Studio Code vscode
- Angular 11
What did I try?
- I have found that the variable
ctx
containedngForOf
which contains the data retrieved from a web services (20 items).
ctx.ngForOf
{
"adult": false,
"backdrop_path": "/pcDc2WJAYGJTTvRSEIpRZwM3Ola.jpg",
"genre_ids": [
28,
12,
14,
878
],
"id": 791373,
"original_language": "en",
"original_title": "Zack Snyder's Justice League",
"overview": "Determined to ensure Superman's ultimate sacrifice was not in vain, Bruce Wayne aligns forces with Diana Prince with plans to recruit a team of metahumans to protect the world from an approaching threat of catastrophic proportions.",
"popularity": 7665.745,
"poster_path": "/tnAuB8q5vv7Ax9UAEje5Xi4BXik.jpg",
"release_date": "2021-03-18",
"title": "Zack Snyder's Justice League",
"video": false,
"vote_average": 8.6,
"vote_count": 4415
},
...