How to check form that have more than one field with the same name? I have 3 fields with "locality_id" name. But after validation, f.locality_id attribute has first field value only :/
from webob.multidict import MultiDict
from wtforms import Form
from wtforms import IntegerField, SelectField
from wtforms import validators
class SearchForm(Form):
locality_id = IntegerField(u'Locality', [validators.Required()])
id = IntegerField(u'Person id', [validators.Required()])
street_id = IntegerField(u'Street', [validators.Required()])
building = IntegerField(u'Building', [validators.Required()])
appartment = IntegerField(u'Appartment', [validators.Required()])
d = MultiDict([('locality_id', 1), ('locality_id', 2), ('locality_id', 3), ('id', 32132), ('street_id', 243), ('building', 3), ('appartment', 12)])
f = SearchForm(d)
print f.validate()
print f.errors
print f.data
print f.locality_id.data
Output:
% python form_test.py
True
{}
{'building': 3, 'locality_id': 1, 'id': 32132, 'street_id': 243, 'appartment': 12}
1