我正在 ubuntu 上开发我的第一个烧瓶服务器,一切都适用于提供简单的文本,例如
@application.route("/")
def application(environ, start_response):
start_response('200 OK', [('Content-Type', 'text/html')])
return("hello world")
但是,在导入 render_template 时,使用 html 创建一个相邻的模板文件夹,并替换为
return render_template("page.html")
它返回一个没有错误的空白页。我已经测试过,任何东西都可以作为参数放入 render_template() 中,但仍然没有错误或结果。我的烧瓶包或代码有问题吗?
谢谢,斯蒂芬
编辑:将函数从“application()”更改为 mainPg(),返回 mainPg(environ, start_response) 需要两个参数