python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How to change priority of WTForms validators?
tl;dr: I need to change the order in which WTForms validators validate the user input. How do I do that?
Details:
Flask code:
class SampleForm(Form):
user_email = user_email_field
...
@api.route('...

Andy Mac
Votes: 0
Answers: 1
How to get all checked items in SelectMultipleField in WTForms + Flask
I have a SelectMultipleField but when I try to access checked items, thought form.fields.data I only get the first of them.
More over, by trying to get answers directly from request.form.data through
...
username
Votes: 0
Answers: 1
How to fix WTForms validators
I'm using flask-wtform and wtform validators, depending on the code below, some validators such as reCaptcha and EqualTo() are not working and the form submits without any validation. The rest of the ...

Sajed Khoshkar
Votes: 0
Answers: 1
WTForms - Unable to locate the error message reported in the source code
I am working on the Flask tutorial from Miguel for input validation with WTForms. The forms.py is defined below:
from flask_wtf import FlaskForm
from wtforms import StringField, PasswordField, Boolean...

chapter3
Votes: 0
Answers: 0