flask render_template返回无错误的空白页

时间:2018-09-05 04:23:08

标签: flask html-templates

我正在ubuntu上的第一台Flask服务器上工作,并且所有内容都能正常工作,例如

@application.route("/")
def application(environ, start_response):
        start_response('200 OK', [('Content-Type', 'text/html')])
        return("hello world")

但是,当导入render_template时,使用html创建一个相邻的template文件夹,并替换为

    return render_template("page.html") 

它返回没有错误的空白页。我已经测试过,可以将任何东西作为render_template()中的参数放入,并且仍然没有错误或结果。 我的烧瓶包装或代码有问题吗?

谢谢, 斯蒂芬

编辑:将函数从“ application()”更改为mainPg(),返回mainPg(environ,start_response)需要两个参数

0 个答案:

没有答案