30

我的 Python 程序中有这个函数:

@tornado.gen.engine
def check_status_changes(netid, sensid):        
    como_url = "".join(['http://131.114.52:44444/ztc?netid=', str(netid), '&sensid=', str(sensid), '&start=-5s&end=-1s'])

    http_client = AsyncHTTPClient()
    response = yield tornado.gen.Task(http_client.fetch, como_url)

    if response.error:
            self.error("Error while retrieving the status")
            self.finish()
            return error

    for line in response.body.split("\n"):
                if line != "": 
                    #net = int(line.split(" ")[1])
                    #sens = int(line.split(" ")[2])
                    #stype = int(line.split(" ")[3])
                    value = int(line.split(" ")[4])
                    print value
                    return value

我知道

for line in response.body.split

是一个发电机。但我会将 value 变量返回给调用该函数的处理程序。这可能吗?我能怎么做?

4

1 回答 1

45

在 Python 2 或 Python 3.0 - 3.2 中,您不能使用returnwith 值退出生成器。您需要使用yieldplus areturn 而不使用表达式:

if response.error:
    self.error("Error while retrieving the status")
    self.finish()
    yield error
    return

在循环本身中,yield再次使用:

for line in response.body.split("\n"):
    if line != "": 
        #net = int(line.split(" ")[1])
        #sens = int(line.split(" ")[2])
        #stype = int(line.split(" ")[3])
        value = int(line.split(" ")[4])
        print value
        yield value
        return

替代方法是引发异常或使用龙卷风回调。

在 Python 3.3 和更新版本中,return生成器函数中的值会导致该值附加到StopIterator异常。对于async def异步生成器(Python 3.6 及更高版本),return仍然必须是无价值的。

于 2013-04-04T11:05:26.647 回答