import asyncio
import Response
import aiohttp
async def resolve_response_json(res):
new_res = Response()
async with res:
new_res.status = res.status
new_res.json = await res.json()
return new_res
class Client:
async def request(url):
async with aiohttp.ClientSession() as sess:
res = await sess.get(url=url)
return await resolve_response_json(res).json
client = Client()
loop = asyncio.get_event_loop()
value = loop.run_until_complete(client.request('https://example.com/api/v1/resource'))
这段代码为什么给我:
> return await resolve_response_json(res).json
E AttributeError: 'coroutine' object has no attribute 'json'
我认为await
关键字总是返回实际值。如果确实如此,为什么我的代码会抛出此错误?
或者我只是傻了,可能忘了把await
放在某个地方?
答案 0 :(得分:2)
您正在等待resolve_response_json(res).json
,而不是resolve_response_json(res)
。
将其更改为(await resolve_response_json(res)).json
可能有用。