在被调用的函数外部访问Flask参数

时间:2016-09-21 18:03:01

标签: python flask

未将user_name传递给other_function作为参数,我如何才能访问user_name

@app.route('/profile/<user_name>/')
def profile(user_name):
    other_function()
    # do more stuff

def other_function():
    print request.args

1 个答案:

答案 0 :(得分:1)

您可以通过request.view_args来访问视图参数,这是一个字典:

def other_function():
    print request.view_args['user_name']