使用下载tornado.httpclient客户端-非阻塞Python

2024-04-26 09:33:34 发布

您现在位置:Python中文网/ 问答频道 /正文

def handle_request(param1,param2):
    if response.error:
        print "Error:", response.error
    else:
        print response.body
        print param1
        print param2


param1
param2
http_client = AsyncHTTPClient()
http_client.fetch("http://www.google.com/", handle_request)

我需要将param1和param2传递给handle\u请求


Tags: clienthttpifresponserequestdefbodyerror
1条回答
网友
1楼 · 发布于 2024-04-26 09:33:34

使用^{}

import functools

# handle_response will be called with three arguments:
# first the ones from the partial, and then the response
def handle_response(param1, param2, response): pass

http_client.fetch("http://www.google.com",
    functools.partial(handle_request, param1, param2))

相关问题 更多 >