wtforms:验证始终为false

首先,我是python和Flask的新手,所以我很抱歉如果我的问题是愚蠢的。 我搜索它,但从来没有找到答案(这应该是一个“容易”的我猜)。

我想在我的网站上添加一个联系页面,我发现了这个教程,所以我跟着它。 一切正常,直到表单验证。 我只使用Requiredform.validate()总是返回false。 如果我不碰我的代码,并且删除表单类中的每个Required,它都可以正常工作, form.validate()返回true。

我真的不明白为什么,我读了很多validate_on_submit()应该被使用,但是如果我使用它,我会得到一个错误:*'ClassName'对象没有属性'validate_on_submit'*

以下是代码的相关部分:

Index.py

@app.route('/contact', methods=['GET','POST'])
def contact():
form = ContactForm()

if request.method == 'POST':
    if form.validate() == False:
        flash('All Fields are required.')
        return render_template('contact.html', form=form)
    else:
        return 'Form posted'
elif request.method == 'GET':
    return render_template('contact.html', form=form)

forms.py

from wtforms import Form, TextField, TextAreaField, SubmitField, validators,ValidationError 

class ContactForm(Form):
  name = TextField("Name", [validators.Required()])
  email = TextField("Email")
  subject = TextField("Subject")
  message = TextAreaField("Message")
  submit = SubmitField("Send")

contact.html

<div id="contact">
    {% for message in get_flashed_messages() %}
        <div class="flash">{{ message }}</div>
    {% endfor %}
  <form action="{{ url_for('contact') }}" method=post>

    {{ form.name.label }}
    {{ form.name }}

    {{ form.email.label }}
    {{ form.email }}

    {{ form.subject.label }}
    {{ form.subject }}

    {{ form.message.label }}
    {{ form.message }}

    {{ form.submit }}
  </form>
 </div>

即使在“名称”字段中输入内容,我也从来没有收到“表单发布”字符串。

提前致谢,


您必须使用请求中的值初始化表单实例:

from flask import request

@app.route('/contact', methods=['GET','POST'])
def contact():
    form = ContactForm(request.form)
    if request.method == "POST" and form.validate():
        # do something with form
        # and probably return a redirect
    return render_template("contact.html", form=form)

这里有一个比你在问题中链接的教程更好的教程:http://flask.pocoo.org/docs/patterns/wtforms/。

查看教程中的模板渲染代码,确保渲染表单域错误。 如果表单已发布但未验证,则代码将通过包含字段验证错误的表单实例进入render_template (同样,请参阅教程和WTForms文档以获取详细信息)。


当我在Miguel Grinberg的书“Flask Web Development”的演示代码之后测试登录表单时,我总是失败form.validate_on_submit()。 所以我想我应该找到一种调试方法。

我正在采取的调试方法是将以下代码添加到app / auth / views.py:

flash(form.errors)

然后它显示我跑到登录页面时的罪魁祸首:

errors={'csrf_token': ['CSRF token missing']}

所以我建议使用form.errors消息进行调试。


刚刚遇到问题,解决方案是在模板中的表单下添加hidden_tag

...
<form action="{{ url_for('contact') }}" method=post>
{{ form.hidden_tag() }}
...
链接地址: http://www.djcxy.com/p/61753.html

上一篇: wtforms: Validation always false

下一篇: I'm having problems with wtforms selectfields when i use a POST with Flask