Flask-RESTful render_template无法正常工作

时间:2015-08-28 15:16:24

标签: flask flask-restful

我是烧瓶的新手,我尝试使用Flask-RESTful来使烧瓶以安静的方式工作。但是,我无法呈现HTML,而我尝试返回render_template它返回HTML的源代码, 就是这样Flask render template not working

我尝试了答案并且它有效,但是我无法输入像

这样的参数
render_template('index.html',titile="title","passwd"="123456")

它显示了我SyntaxError: keyword can't be an expression。任何人都可以帮我解决这个问题吗?

2 个答案:

答案 0 :(得分:3)

您的passwd周围有引号,使用kwargs时语法无效。

只需删除"

即可
render_template('index.html', titile="title", passwd="123456")

答案 1 :(得分:0)

Flask-RESTful不使用render_template。它旨在使用REST API调用并呈现JSON响应。除非您正在构建REST API,否则您不需要Flask-RESTful,只需要Flask。

要解决您的特定render_template()问题,我同意Wondercricket。