在用python搭建服务器时有一个东西(姑且叫他东西吧)始终不得其解,今天查其他东西时偶然间发现了相关定义,可能存在理解不对的地方
来源为aiohttp的官方文档
这是原文中所说
coroutine handler
(request)
Abstract method performing web-handler processing.
Parameters: | request – aiohttp.web.Request instance for resolving, the request has aiohttp.web.Request.match_info equals to None at resolving stage. |
---|---|
Returns: | aiohttp.web.StreamResponse or descendants. |
Raise: | aiohttp.web.HTTPException on error |
翻译过来也就是说:
handler(request)是一个协程函数,是处理web-handler过程的抽象函数,而web-handler指的是返回http相应的端点。
参数:request:用来解析的aiohttp.web.Request实例,在解析时aiohttp.web.match.info=None
返回:aiohttp.web.StreamResonse或descendants
若有错则:raise aiohttp.web.HTTPExecption