0%

Flask闭关修炼(高级) 1

路由跳转问题

编写route时,如果末尾有/未匹配时会发生一次308重定向

注册路由的方法

  1. 装饰器
1
2
3
@app.route('/')
def index():
return 'index'
  1. add_url_rule
1
app.add_url_rule('/', view_func=index)