我无法通过某种简单的Flask WTForm进行验证。
经过几天的奋斗,我已经尝试了我能想到的一切。我是Flask和Web编程的新手。
这是我的代码的精简但有效的版本。测试代码的唯一操作(除了提交表单)是将消息打印到终端。它在运行时的外观:
这是views.py:
# -*- coding: utf_8 -*-
...
@app.route('/test/new/', methods=['GET','POST'])
def newTest():
form = TestForm(request.form)
if form:
print 'request.form.get(\'name\') is %s' % (request.form.get('name'),)
if request.method == 'POST':
print 'in newTest(), request is POST'
if form.validate():
print 'form validates'
return redirect(url_for('allTests'))
else:
print 'form does not validate'
return render_template('newTest.html', form=form)
else:
return render_template('newTest.html', form=form)
这是form.py:
class TestForm(Form):
name = StringField(u"Test Name", [validators.InputRequired()])
address = StringField(u"Test Address", [validators.InputRequired()])
submit = SubmitField(u"Submit")
models.py:
from sqlalchemy import Column, Integer, Unicode
from sqlalchemy.ext.declarative import declarative_base
Base = declarative_base()
class TestModel(Base):
__tablename__ = 'test'
name = Column(Unicode(80), nullable = False)
id = Column(Integer, primary_key = True)
address = Column(Unicode(80), nullable = False)
和模板:
<html lang="en">
<head>
<meta charset="utf-8">
<title>New Test</title>
</head>
<body>
<div>
<form action="{{ url_for('newTest') }}" method="POST" name="add_rest">
<ul>
<li>Name: {{ form.name }}</li>
<li>Address: {{ form.address }}</li>
</ul>
<input type="submit" value="Create">
</div>
</body>
</html>
点击&#34;创建&#34;我得到的输出(到终端)以上:
request.form.get('name') is Vinnie
in newTest(), request is POST
form does not validate
10.0.2.2 - - [18/Feb/2016 02:34:51] "POST /test/new/ HTTP/1.1" 200 -
然后浏览器重新显示表单及其内容。
我认为我错过了一些简单的事情,但我还没有能够解决这个问题。
代码的结构,如&#34; tree&#34;所示:
我非常感谢任何帮助!
答案 0 :(得分:4)
您是否尝试在HTML文件中插入CSRF令牌?
例如,通过在Jinja模板中添加以下内容?
<body>
<div>
<form action="{{ url_for('newTest') }}" method="POST" name="add_rest">
<!-- Added line -->
{{ form.csrf_token }}
<ul>
<li>Name: {{ form.name }}</li>
<li>Address: {{ form.address }}</li>
</ul>
<input type="submit" value="Create">
</div>
</body>
This SO帖子可能有用。
您还可以查看官方文档here,其中指出validate()
函数需要使用CSRF令牌。