How to resolve a NameError: global name ‘ContactForm’ is not defined
我在 Flask 中创建了一个联系表单,但它不起作用。它给出了错误 NameError: global name ‘ContactForm’ is not defined
自定义形式为:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<form action="{{ url_for(‘contact’) }}" method=post> {{ form.hidden_tag() }} {{ form.name.label }} {{ form.email.label }} {{ form.subject.label }} {{ form.message.label }} {{ form.submit }} |
routes.py 是:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
from flask import Flask, render_template from forms import ContactForm app = Flask(__name__) def contact(): if request.method == ‘POST’: elif request.method == ‘GET’: if __name__ == ‘__main__’: |
我该如何解决这个问题?
创建一个名为 forms.py 的新文件并在其中插入以下代码。那么你的代码应该可以工作了。
1
2 3 4 5 6 7 8 9 10 11 |
from flask.ext.wtf import Form
from wtforms import TextField, TextAreaField, SubmitField, validators class ContactForm(Form): |
首先,你有安装flask-wtf 吗?
试试这个:
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/267975.html