pycharm flask点击不同按钮跳转不同页面
时间: 2023-09-05 17:00:47 浏览: 186
要使PyCharm中的Flask在点击不同按钮时跳转到不同的页面,需要进行以下步骤:
1. 首先,安装Flask。在PyCharm中的终端窗口中输入以下命令安装Flask:
```
pip install flask
```
2. 创建一个Flask应用程序。在PyCharm中新建一个Python文件,编写下面的代码:
```python
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')
@app.route('/button1')
def button1():
return render_template('button1.html')
@app.route('/button2')
def button2():
return render_template('button2.html')
if __name__ == '__main__':
app.run(debug=True)
```
3. 在Flask应用程序的同一级目录下,创建一个名为templates的文件夹,并在该文件夹中创建三个HTML文件:index.html、button1.html和button2.html。
4. 在index.html中,创建两个按钮,每个按钮分别链接到button1和button2的URL:
```html
<button onclick="window.location.href='/button1'">按钮1</button>
<button onclick="window.location.href='/button2'">按钮2</button>
```
5. 在button1.html中,填写按钮1点击后的内容;在button2.html中,填写按钮2点击后的内容。
6. 运行Flask应用程序。在PyCharm中,点击运行按钮启动应用程序。
7. 在浏览器中输入http://localhost:5000/,即可打开应用程序的主页。点击按钮1或按钮2,即可跳转到相应的页面。
通过上述步骤,你可以在PyCharm中使用Flask实现点击不同按钮时跳转到不同页面的功能。
阅读全文