docs: update api doc

This commit is contained in:
chenos 2021-11-25 09:19:53 +08:00
parent 126a7e1f92
commit 1daa8138c1
2 changed files with 57 additions and 12 deletions

View File

@ -219,19 +219,27 @@ await field.sync();
interface updateOptions { interface updateOptions {
(options: CollectionOptions): void; (options: CollectionOptions): void;
} }
interface CollectionOptions extends Sequelize.ModelOptions {
name: string;
tableName?: string;
fields?: any;
model?: string | Model;
repository?: string | Repository;
[key: string]: any;
}
``` ```
##### Examples ##### Examples
可能的更新项详见 [Sequelize.ModelOptions](https://github.com/sequelize/sequelize/blob/f9dfaa7c533acad4ae88fd16b47c3a5805fb6e9b/types/lib/model.d.ts#L1390)
```ts ```ts
const collection = db.collection({ const collection = db.collection({
name: 'tests', name: 'tests',
}); });
collection.updateOptions({ collection.updateOptions({
createdAt: true,
updatedAt: true,
sortable: true,
fields: [],
}); });
``` ```

View File

@ -144,7 +144,7 @@ try {
##### Examples ##### Examples
## `db.getCollection()` ## `db.getCollection()` <Badge>待完善</Badge>
##### Definition ##### Definition
@ -160,7 +160,7 @@ class Database {
const collection = db.getCollection('tests'); const collection = db.getCollection('tests');
``` ```
## `db.hasCollection()` ## `db.hasCollection()` <Badge>待完善</Badge>
##### Definition ##### Definition
@ -178,7 +178,7 @@ if (db.hasCollection('tests')) {
} }
``` ```
## `db.import()` ## `db.import()` <Badge>待完善</Badge>
##### Definition ##### Definition
@ -207,12 +207,49 @@ db.import({
}); });
``` ```
## `db.on()` ## `db.on()` <Badge>待完善</Badge>
##### Definition ##### Definition
collection 的事件(都是同步的)
- `beforeDefineCollection`
- `afterDefineCollection`
- `beforeUpdateCollection`
- `afterUpdateCollection`
- `beforeRemoveCollection`
- `afterRemoveCollection`
model 的事件(异步的)
- `<modelName>.<hookType>`
##### Examples ##### Examples
全局事件
```ts
db.on('beforeDefineCollection', (options: CollectionOptions) => {
});
db.on('afterDefineCollection', (collection: Collection) => {
});
db.on('afterCreate', async (model, options) => {
});
```
特定 model 事件
```ts
db.on('posts.afterCreate', async (model, options) => {
});
```
## `db.registerFieldTypes()` ## `db.registerFieldTypes()`
自定义字段存储类型,更多字段类型查看 [Field Types](field-types) 自定义字段存储类型,更多字段类型查看 [Field Types](field-types)
@ -248,7 +285,7 @@ db.collection({
}); });
``` ```
## `db.registerModels()` ## `db.registerModels()` <Badge>待完善</Badge>
自定义 Model 自定义 Model
@ -286,7 +323,7 @@ const test = Test.model<CustomModel>.create();
test.customMethod(); test.customMethod();
``` ```
## `db.registerOperators()` ## `db.registerOperators()` <Badge>待完善</Badge>
自定义筛选条件 自定义筛选条件
@ -360,7 +397,7 @@ repository.find({
}); });
``` ```
## `db.registerRepositories()` ## `db.registerRepositories()` <Badge>待完善</Badge>
自定义 Repository 自定义 Repository
@ -385,7 +422,7 @@ const Test = db.collection({
Test.repository<CustomRepository>.customMethod(); Test.repository<CustomRepository>.customMethod();
``` ```
## `db.removeCollection()` ## `db.removeCollection()` <Badge>待完善</Badge>
移除 collection 移除 collection