2016-11-06 57 views
2

目前我做這樣的事情提取從aiohttp POST請求的JSON之後的參數

app.router.add_route('POST', '/foo/{par}', foo_test) 

我如何可以提取POST的身體要求

@asyncio.coroutine 
def foo_test(request): 
    body = request.content.read() #returns a generator 

我的問題是如何提取發電機機身返回?

回答

5

body = yield from request.json()