from aiohttp import web, web2, web_reqrep2 async def handle(request): name = request.match_info.get('name', "Anonymous") text = "Hello, " + name # push ...
確定! 回上一頁