flask wtforms 中表单怎么改css
2017-12-04 · 百度知道合伙人官方认证企业
育知同创教育
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
关注
展开全部
视图函数中传递若干个form实例到html页:
@app.route('/test/')def test(): form1 = TestForm1() form2 = TestForm2() return remder_template('test.html',form1=form1,form2=form2)<form action="/test1/ method="post"> {{ form1.field() }} <input type="submit" value="提交" /></form> <form action="/test2/ method="post"> {{ form2.field() }} <input type="submit" value="提交" /></form>
再编写两个视图函数分别接收form1,form2提交的数据:
@app.route('/test1/', method=['POST'])def test1(): # 处理代码 @app.route('/test2/', method=['POST'])def test2(): # 处理代码
@app.route('/test/')def test(): form1 = TestForm1() form2 = TestForm2() return remder_template('test.html',form1=form1,form2=form2)<form action="/test1/ method="post"> {{ form1.field() }} <input type="submit" value="提交" /></form> <form action="/test2/ method="post"> {{ form2.field() }} <input type="submit" value="提交" /></form>
再编写两个视图函数分别接收form1,form2提交的数据:
@app.route('/test1/', method=['POST'])def test1(): # 处理代码 @app.route('/test2/', method=['POST'])def test2(): # 处理代码
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询