I have a form which uses a GET method. i also have an input with the name \'a\'. when i handle the request on the server side (nodejs) i want to be able to use req.body.a (in o
If you are using GET method then the data is sent as query parameters
GET
req.query
By the way there will be no body for GET method. If you want to send data through body use POST or PUT method.
POST
PUT