Asyncio 和 aiohttp 将所有 url 路径路由到处理程序
Asyncio and aiohttp route all urls paths to handler
我很难找到匹配所有传入 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/ or 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。
冒号(:
)后面的部分是正则表达式。 .*
正则表达式描述了一切,包括路径分隔符 (/
) 和其他符号。
我很难找到匹配所有传入 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/ or 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。
冒号(:
)后面的部分是正则表达式。 .*
正则表达式描述了一切,包括路径分隔符 (/
) 和其他符号。