python代码通过前端按钮跳转到另一个前端界面
时间: 2023-09-13 10:09:31 浏览: 140
Python通过GUI图形库wxPython连接oracle数据库实现系统登录、跳转主界面功能(源代码下载)
你可以使用 Flask 框架来实现这个功能,具体步骤如下:
1. 在 Flask 应用中定义两个路由,分别渲染两个前端界面。
```python
from flask import Flask, render_template, redirect, url_for
app = Flask(__name__)
@app.route('/')
def home():
return render_template('home.html')
@app.route('/another_page')
def another_page():
return render_template('another_page.html')
```
2. 在 home.html 中添加一个链接或按钮,指向另一个页面。
```html
<a href="{{url_for('another_page')}}">Go to another page</a>
```
或
```html
<form action="{{url_for('another_page')}}">
<button type="submit">Go to another page</button>
</form>
```
3. 运行 Flask 应用,并访问首页。
```python
if __name__ == '__main__':
app.run(debug=True)
```
点击链接或按钮,即可跳转到另一个前端界面。
阅读全文