I have a form that aggroup the data on classes class_a[name], class_a[description] , class_b[name], class_b[description], etc. On nodejs, using body parser, the output of req.body is
class_a[name]: "name of class a"
class_a[description] : "description of class a"
class_b[name]: "name of class b"
class_b[description] : "description of class b"
and so on.
But i cant get as an object, i.e. i cant do get the value like "class_a.name" or "class_b.description". How to do this ?