当前位置: 移动技术网 > IT编程>脚本编程>Python > 随便写写

随便写写

2018年06月01日  | 移动技术网IT编程  | 我要评论

360武尊,鲜网简体首页,2012山东公务员职位表

向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

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网