网络编程
位置:首页>> 网络编程>> Python编程>> Python flask框架实现浏览器点击自定义跳转页面

Python flask框架实现浏览器点击自定义跳转页面

作者:青女素娥  发布时间:2023-04-26 15:48:31 

标签: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>

运行结果

Python flask框架实现浏览器点击自定义跳转页面

进入5000端口显示如图,点击这个按钮,跳到自定义的/cool_form页面

Python flask框架实现浏览器点击自定义跳转页面

代码在github:https://github.com/qingnvsue/flask中的webbutton文件夹

在我的程序里我实现了在web页面点击加法器或者除法器按钮进入相应页面

Python flask框架实现浏览器点击自定义跳转页面

Python flask框架实现浏览器点击自定义跳转页面

Python flask框架实现浏览器点击自定义跳转页面

代码在github:https://github.com/qingnvsue/flask中的add文件夹

来源:https://www.cnblogs.com/qingnvsue/p/12988095.html

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com