from aiohttp import web routes = web.RouteTableDef() @routes.post('/test') async def test(request): print(request.query) print(await ...
確定! 回上一頁