如何在aiohttp响应中处理表单数据

时间:2016-10-06 21:03:38

标签: python multipartform-data python-3.5 aiohttp

我正在寻找多部分表单数据并将其转换为字典。 json很容易,但这似乎有点不同。

当前代码:

app = web.Application()

async def deploy(request):
    # retrieve multipart form data or
    # x-www-form-urlencoded data
    # convert to a dictionary if not already
    text = "Hello"
    return web.Response(text=text)
app.router.add_post('/', deploy)

web.run_app(app)

1 个答案:

答案 0 :(得分:2)

您可以使用request.post()方法。

app = web.Application()

async def deploy(request):
    # retrieve multipart form data or
    # x-www-form-urlencoded data
    data = await request.post()
    print(data)
    text = "Hello"
    return web.Response(text=text)

app.router.add_post('/', deploy)

web.run_app(app)