I'm developing an easy website using Angular and nodeJS. I'm trying to send one parameter "email" from an Angular service when accessing a route defined in node server. The Angular service function:
The node defined accessing route:

The configuration of the node server:
I tried using bodyParser and using req.body for getting the email parameter sent from the frontend, but it seems to be lost.
It's getting an empty dictionary when req.params or req.body are printed.

Someone knows what can be happening? Thanks for reading!

