随便写写

向URL中添加变量部分  标记特殊字段为 <variable_name> , 这部分就可以作为参数传给函数

rule可以制定一个可选的转换器 如:<converter: variable_name>

@app.route('/user/<username>')
def show_user_profile(username):
    # show the user profile for that user
    pass

@app.route("/post/<int:post_id>")

def show_post(post_id):

  #show the post with the given id, the id is an integer

  pass

INT 接受整型
FLOAT 接受浮点型
PATH 默认的行为,接受斜线

唯一的网址/重定向行为

@app.route('/projects')

def projects():

  pass

@app.route('/about')

def about():

  pass

原文地址:https://www.cnblogs.com/Muzeer/p/9118737.html