在flask中render_template函数使用方法
时间: 2024-05-09 09:17:53 浏览: 127
PyPI 官网下载 | flask_render_specific_template-1.1.tar.gz
可以在路由处理函数中使用render_template函数来渲染指定的html页面,例如:
```
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')
if __name__ == '__main__':
app.run()
```
在上述代码中,访问根路由时,将会渲染名为index.html的页面。需要确保index.html文件位于应用程序的templates文件夹中。
阅读全文