すべての受信URLに一致するワイルドカードURL一致パターンを見つけるのに問題があります。これは、ホスト名しか持たないURLと一致します。
import asyncio
from aiohttp import web
@asyncio.coroutine
def handle(request):
print('there was a request')
text = "Hello "
return web.Response(body=text.encode('utf-8'))
@asyncio.coroutine
def init(loop):
app = web.Application(loop=loop)
app.router.add_route('GET', '/', handle)
srv = yield from loop.create_server(app.make_handler(),
'127.0.0.1', 9999)
print("Server started at http://'127.0.0.1:9999'")
return srv
loop = asyncio.get_event_loop()
loop.run_until_complete(init(loop))
try:
loop.run_forever()
except KeyboardInterrupt:
pass
したがって、パスに関係なく、要求があるときはいつでもハンドラーを呼び出す必要があります。 http://127.0.0.1:9999/ または http://127.0.0.1:9999/test/this/test/ の場合
ここで調べました http://aiohttp.readthedocs.org/en/stable/web.html#aiohttp-web-variable-handler 正しい手がかりが得られませんでした
app.router.add_route('GET', '/{tail:.*}', handle)
を使用してすべてのURLをキャッチできます。