无法使用蓝图Flask进行路由

时间:2013-03-01 13:34:52

标签: python flask

我按照http://flask.pocoo.org/docs/blueprints/#blueprints中的说明操作,尝试在除我创建app对象的脚本之外的其他脚本中进行路由。但我得到错误

“服务器遇到内部错误,无法完成您的请求。服务器过载或应用程序出错。”

它只是忽略了我在该脚本中所做的路由。

restservice = Blueprint('restservice', __name__,template_folder='templates')

@restservice.route('/')
def approot():
   render_template('timeline.html')

1 个答案:

答案 0 :(得分:1)

假设您的蓝图位于名为restservice.py的文件中,您需要在创建应用程序对象的文件中添加这些行

from restservice import restservice as restModule
app.register_blueprint(restModule)