【问题标题】:flask-wtf validate_on_submit() returns always trueflask-wtf validate_on_submit() 总是返回 true
【发布时间】:2017-08-05 13:13:20
【问题描述】:

我是烧瓶 wtf 的新手。我根据文档做了,但是 validate_on_submit() 总是返回 true 而不根据规则进行验证。我是否遗漏了什么或做错了什么?

表格:

from flask_wtf import FlaskForm
from wtforms import StringField, TextAreaField, BooleanField
from wtforms.validators import DataRequired, Length, Optional


class TemplateCreateForm(FlaskForm):
    title = StringField([Length(min=4, max=45), DataRequired()])
    view_path = StringField([Length(min=1, max=45), DataRequired()])
    caption = TextAreaField([Length(min=5, max=250), Optional()])
    is_active = BooleanField([DataRequired()])

controller.py

@submodule.route('/create', methods=['GET', 'POST'])
@logged_user_only
def create():
    form = TemplateCreateForm(request.form)
    if form.validate_on_submit():
        mongo.db.template.insert(
            {
                'title': str(form.title.data),
                'is_active': bool(form.is_active.data),
                'caption': str(form.caption.data),
                'view_path': str(form.view_path.data),
                'user_id': str(session['user.user_id']),
                'insert_timestamp': datetime.now()
            }
        )
    print form.errors
    return render_template('create.html', form=form)

view.html

<form action="{{%20url_for('template.create')%20}}" method="post">
    <h5 class="form-header">Template creation</h5>{{ form.hidden_tag() }} {{ form.csrf_token }}
    <div class="form-group">
        <label for="">Title *</label> {{ form.title(class_='form-control') }}
    </div>
    <div class="form-group">
        <label for="">Caption </label> {{ form.caption(class_='form-control') }}
    </div>
    <div class="form-group">
        <label for="">View *</label> {{ form.view_path(class_='form-control') }}
    </div>
    <div class="form-check">
        <label class="form-check-label" for="">{{ form.is_active(class_='form-check-input') }} Active</label>
    </div>{% for message in form.errors %} {{ message }} {% endfor %}
    <div class="form-buttons-w">
        <button class="btn btn-primary">Submit</button>
    </div>
</form>

【问题讨论】:

    标签: python python-2.7 flask flask-wtforms


    【解决方案1】:

    class TemplateCreateForm 中有错误。字段应按以下格式描述:

    field = StringField('label_here', list_of_validators_here)
    

    但在您的情况下,list_of_validators 的作用是 label。所以,只要给表单的所有字段添加标签。

    title = StringField('title', [Length(min=4, max=45), DataRequired()])
    view_path = StringField('view_path', [Length(min=1, max=45), DataRequired()])
    ...
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2013-12-08
      • 2023-03-15
      • 2018-03-15
      • 2012-05-30
      • 2016-10-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多