nonebot2/docs/api/handler.md

105 lines
1.2 KiB
Markdown
Raw Normal View History

2021-03-20 07:41:50 +00:00
---
contentSidebar: true
sidebarDepth: 0
---
# NoneBot.handler 模块
## 事件处理函数
该模块实现事件处理函数的封装,以实现动态参数等功能。
## _class_ `Handler`
基类:`object`
2021-11-17 12:38:35 +00:00
事件处理器类。支持依赖注入。
2021-03-20 07:41:50 +00:00
2021-11-17 12:38:35 +00:00
### `__init__(func, *, name=None, dependencies=None, allow_types=None, dependency_overrides_provider=None)`
2021-03-20 07:41:50 +00:00
2021-11-17 12:38:35 +00:00
* **说明**
2021-03-20 07:41:50 +00:00
2021-11-17 12:38:35 +00:00
装饰一个函数为事件处理器。
2021-03-20 07:41:50 +00:00
2021-11-17 12:38:35 +00:00
* **参数**
2021-03-20 07:41:50 +00:00
2021-11-17 12:38:35 +00:00
2021-11-19 10:20:20 +00:00
* `func: Callable[..., Any]`: 事件处理函数。
2021-03-20 07:41:50 +00:00
2021-11-17 12:38:35 +00:00
* `name: Optional[str]`: 事件处理器名称。默认为函数名。
2021-03-20 07:41:50 +00:00
2021-11-17 12:38:35 +00:00
* `dependencies: Optional[List[DependsWrapper]]`: 额外的非参数依赖注入。
2021-03-20 07:41:50 +00:00
2021-11-17 12:38:35 +00:00
* `allow_types: Optional[List[Type[Param]]]`: 允许的参数类型。
2021-03-20 07:41:50 +00:00
2021-11-17 12:38:35 +00:00
* `dependency_overrides_provider: Optional[Any]`: 依赖注入覆盖提供者。
2021-03-20 07:41:50 +00:00
2021-11-17 12:38:35 +00:00
### `func`
2021-03-20 07:41:50 +00:00
* **类型**
2021-11-19 10:20:20 +00:00
`Callable[..., Any]`
2021-03-20 07:41:50 +00:00
* **说明**
2021-11-17 12:38:35 +00:00
事件处理函数
2021-03-20 07:41:50 +00:00
2021-11-17 12:38:35 +00:00
### `name`
2021-03-20 07:41:50 +00:00
* **类型**
2021-11-17 12:38:35 +00:00
`str`
2021-03-20 07:41:50 +00:00
* **说明**
2021-11-17 12:38:35 +00:00
事件处理函数名
2021-03-20 07:41:50 +00:00
2021-11-17 12:38:35 +00:00
### `allow_types`
2021-03-20 07:41:50 +00:00
* **类型**
2021-11-17 12:38:35 +00:00
`List[Type[Param]]`
2021-03-20 07:41:50 +00:00
* **说明**
2021-11-17 12:38:35 +00:00
事件处理器允许的参数类型
2021-03-20 07:41:50 +00:00
2021-11-17 12:38:35 +00:00
### `dependencies`
2021-03-20 07:41:50 +00:00
* **类型**
2021-11-17 12:38:35 +00:00
`List[DependsWrapper]`
2021-03-20 07:41:50 +00:00
* **说明**
2021-11-17 12:38:35 +00:00
事件处理器的额外依赖