I used the following tutorial
https://www.c-sharpcorner.com/article/asp-net-core-web-api-with-dapper-and-vs-2017/
to create a asp.net core 2 web api. The api is working fine from browser when i run
https://localhost;44313/api/liveconsole
I used the following tutorial to create the Angular UI for my web api, after several attempts I finally got the page to show something
https://www.youtube.com/watch?v=SxU04gx2EqA
I initially encountered Access-Control-Allow-Origin error but fixed by visiting this link (user answer from Ji Ra)
https://stackoverflow.com/questions/44379560/how-to-enable-cors-in-asp-net-core-webapi
My page now shows but has the default text 'liveconsole-list-works!' and nothing else. I have inspected the page and no errors. What am i doing wrong.
I have checked to see if there is a request and a response has been sent and i see the following
My angular app console has no errors and nothing on the network tab either.
I have just noticed that in the youtube the intellisense pops up when the instructor types *ngFor (@ 7mins 20secs) however on my project i do not get the intellisense. What am i missing?