mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 05:57:53 +00:00
1.8 KiB
1.8 KiB
NocoBase 事件
事件是被动的,由执行某个方法触发的一种行为。
Application 的安装、启动、停止触发的事件,挂在 app.on 下,有:
- init
- start
- stop
- error(Koa 内置)
不区分前后?
全局的 resource action,也是 app.on 层面的事件
- users.login
配置 collection,db.on 层面的事件
- afterDefineCollection
- afterUpdateCollection
- afterRemoveCollection
- afterAddField
- afterRemoveField
app.on
application 的安装、启动、停止等
- init
- start
- stop
- error(Koa 内置)
resource 的 actions
<actionHookType>
<resourceName>.<actionHookType>
db.on
- afterDefineCollection
- afterUpdateCollection
- afterRemoveCollection
- afterAddField
- afterUpdateField
- afterRemoveField
<modelHookType>
<modelName>.<modelHookType>
collection.on
- afterAddField
- afterUpdateField
- afterRemoveField
- 初始化 app.constructor
- 注册插件 app.plugin
- 加载配置 app.load
- 安装 app.init
- 启动 app.start
- 停止 app.stop
生产环境需要:
DB_DIALECT=sqlite DB_STORAGE=db.sqlite
DB_DIALECT=mysql
DB_HOST=localhost
DB_PORT=13306
DB_DATABASE=nocobase
DB_USER=nocobase
DB_PASSWORD=nocobase
DB_LOG_SQL=
APP_LANG server
zh-CN 和 en-US,初始化时使用
NOCOBASE_ENV server
production 和 development
API_PORT server
用于设定 API 端口
API_BASE_PATH server
resourcer 的 api prefix,默认值 /api/
API_BASE_URL client
缺失时,使用 API_BASE_PATH 补齐
API_HOSTNAME client
可以去掉
PROXY_TARGET client
本地开发时有用,默认为 http://localhost:${API_PORT},如果是远程的 API 时才需要修改