这篇文章主要介绍了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
Check out this cool form!
cool_form.html
Do it!
运行结果
进入5000端口显示如图,点击这个按钮,跳到自定义的/cool_form页面
代码在github:https://github.com/qingnvsue/flask中的webbutton文件夹
在我的程序里我实现了在web页面点击加法器或者除法器按钮进入相应页面
代码在github:https://github.com/qingnvsue/flask中的add文件夹
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。