python传递请求args到函数

时间:2014-11-20 19:17:07

标签: python

我有一个功能

def doStuff():
    thing = str(request.args.get('thing'))
    return thing

我想从带有参数'foo'的脚本中调用它。我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

def doStuff(bar):
    thing = str(bar)
    return thing

doStuff('foo')