1 @app.route(‘/‘, methods=[‘GET‘, ‘POST‘]) 2 def index(): 3 name = None 4 form = NameForm() #将form设置为NameForm类 5 if form.validate_on_submit(): #如果有数据提交的话 6 name = form.name.data #就让name=提交的数据 7 form.name.data = ‘‘ #并且把submit栏清空 8 return render_template(‘index.html‘, form=form, name=name)
P37 4.4
时间: 2024-10-13 00:54:54