0

I have multiple Drop down menus and have a single button that posts all the data, like

this.

But I am getting undefined on using req.body.stringdata:

screenshot

Here are the

route page and the

form page

How can I receive the data?

MLavoie
  • 9,671
  • 41
  • 36
  • 56
Abdul Moiz
  • 25
  • 1
  • 8

1 Answers1

1

To get the data, use req.query['stringdata']) as the method used is GET.

Vipul Singh
  • 638
  • 3
  • 10