使用Flask web 框架写web程序时,表单类选择了flask_wtf。
在创建类时,继承FlaskForm ,在子类中编写构造始终报错,不知道为什么?
from flask_wtf import FlaskForm
class Auth(FlaskForm):
def __init__(self, *args, **kwargs):
super(Auth, self).__init__(*args, **kwargs)
""" 视图函数 """
from . import forms
@auth.route('/')
def index():
s = forms.Auth()
return render_template('auth/index.html')
万千封印