繁体   English   中英

flask-wtf validate_on_submit()始终返回true

[英]flask-wtf validate_on_submit() returns always true

我是flask-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>

您在class TemplateCreateForm犯了错误。 字段应以以下格式描述:

field = StringField('label_here', list_of_validators_here)

但在您的情况下, list_of_validators用作label 因此,只需将标签添加到Form的所有字段。

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM