I'm pretty new to Angular (and express.js). I worked on a project and came to a point where I needed/wanted to make more than one get a request from a single component. As far as I know, the component links (is that the right word? -> "/login" for example) are used to know where the requests belong to.
So, if I made two get requests from the same component, both would end up in the same function in express, not?
Is there a way to create multiple requests in a single component that get handled as independent requests from express (just like they were from different components )?