0
I’m developing a small web project in python(flask) for my own learning and came across something that I had never faced before.
I have a registration form where the fields of an information are dynamic, IE, via jquery I can create and delete fields because I do not know how many links the user will send. My question is the following, how do I receive the request of this form in my python code if I don’t know how many fields will be sent? Is there some sort of list in the request where I can create 'objects' to send everything together?
Guess what is worth clarifying in other words - all form fields that on the HTML side have the equal "name" attribute are grouped in flask’s request.form, the contents of each field as an item in a list.
– jsbueno