Currently in WTForms to access errors you have to loop through field errors like so:

for error in form.username.errors:
        print error

Since i'm building a rest application which uses no form views I'm forced to check through all form fields in order to find where the error lies.

Isn't there a way I could do something like:

for fieldName, errorMessage in form.errros:
        ...do something
link|improve this question

61% accept rate
feedback

1 Answer

up vote 1 down vote accepted

The actual form object has an errors attribute that contains the field names and their errors in a dictionary. So you could do:

for errorMessages, fieldName in enumerate(form.errors):
    for err in errorMessages:
        # do something with your errorMessages for fieldName
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.