我正在尝试将参数传递给另一个方法,但我遇到了异常。
import web
import json
class Process:
def request(self, query_string):
print query_string
def GET(self):
params = web.input()
request(params)
return json.dumps(dict(foo=55))
这给了我。
<type 'exceptions.NameError'> at /process
global name 'request' is not defined
谁能解释为什么我不能将变量传递给另一种方法。