when i sent a request to nodejs server,
how can we find the parameters sent in the request query when request sent to nodejs server.
req.param
req.params
req.query
all giving undefined.
also when i stringify
req
request it gives error :
Converting circular structure to JSON
How to find query parameters.
req.body
contains the body (data) for POST requests. – Sensationalism