在Flask中,我们可以使用装饰器@app.route()
来定义路由。如果我们只想返回模板/HTML页面,可以通过在路由函数中使用render_template()
函数来实现。
首先,需要导入render_template
函数:
from flask import Flask, render_template
然后,在路由函数中使用render_template()
函数来返回模板/HTML页面:
@app.route('/template')
def template_route():
return render_template('template.html')
在上面的代码中,template_route()
函数被定义为路由/template
的处理函数。当用户访问/template
时,该函数会被调用,并返回名为template.html
的模板/HTML页面。
需要注意的是,Flask默认会在项目根目录下的templates
文件夹中寻找模板文件。因此,需要确保在项目中创建了templates
文件夹,并将template.html
文件放置在该文件夹中。
关于Flask的更多详细信息和使用方法,您可以参考腾讯云的Flask产品文档: 腾讯云Flask产品文档
领取专属 10元无门槛券
手把手带您无忧上云