Python flask框架实现浏览器点击自定义跳转页面
更新时间:2020年06月04日 09:24:16 作者:青女素娥
这篇文章主要介绍了Python flask框架实现浏览器点击自定义跳转页面,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
代码如下
_init_.py
from flask import Flask, request, url_for, redirect, render_template app = Flask(__name__) @app.route('/') def index(): return render_template('index.html') @app.route('/cool_form', methods=['GET', 'POST']) def cool_form(): if request.method == 'POST': # do stuff when the form is submitted # redirect to end the POST handling # the redirect can be to the same route or somewhere else return redirect(url_for('index')) # show the form, it wasn't submitted return render_template('cool_form.html')
index.html
<!doctype html> <html> <body> <p><a href="{{ url_for('cool_form') }}" rel="external nofollow" >Check out this cool form!</a></p> </body> </html>
cool_form.html
<!doctype html> <html> <body> <form method="post"> <button type="submit">Do it!</button> </form> </html>
运行结果
进入5000端口显示如图,点击这个按钮,跳到自定义的/cool_form页面
代码在github:https://github.com/qingnvsue/flask中的webbutton文件夹
在我的程序里我实现了在web页面点击加法器或者除法器按钮进入相应页面
代码在github:https://github.com/qingnvsue/flask中的add文件夹
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
相关文章
Python+Socket实现基于UDP协议的局域网广播功能示例
这篇文章主要介绍了Python+Socket实现基于UDP协议的局域网广播功能,结合实例形式分析了Python+socket实现UDP协议广播的客户端与服务器端功能相关操作技巧,需要的朋友可以参考下2017-08-08python中自定义异常/raise关键字抛出异常的案例解析
在编程过程中合理的使用异常可以使得程序正常的执行,本篇文章给大家介绍python中自定义异常/raise关键字抛出异常案例解析,需要的朋友可以参考下2024-01-01
最新评论