作者:菜菜ING | 来源:互联网 | 2023-06-12 15:52
在根路径下创建 templates
文件夹,该文件夹用于放置模板文件
1、创建首页模板文件 index.html
这是首页!
2、创建用户模板文件 user.html
这是用户中心!
3、在根文件夹创建主程序文件
from flask import Flask
from flask import render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html') # 跳转至模板文件
@app.route('/user/')
def user():
return render_template('user.html')
if __name__ == '__main__':
app.run(debug=True)
参考资料
https://weread.qq.com/web/reader/0a932660718ac6bc0a9702e