I followed the Angular tutorial loosely and tried to receive data from a webserver, which works fine. But in the calling Component, i do not receive any data. I doublechecke
At your service, you should return the value:
.then(response => { console.log(response.json()); return response.json() as Project[]; })
This implicit return on arrow functions only works when the statement doesn't have curly braces. i.e:
.then(response => response.json() as Project[])