6.2 KiB
Resourcer
Overview
The interfaces in NocoBase follow a resource-oriented design pattern. Resourcer is mainly used to manage API resources and routes.
const Koa = require('koa');
const { Resourcer } = require('@nocobase/resourcer');
const resourcer = new Resourcer();
// Define a resourcer
resourcer.define({
name: 'users',
actions: {
async list(ctx) {
ctx.body = [
{
name: "u1",
age: 18
},
{
name: "u2",
age: 20
}
]
}
},
});
const app = new Koa();
// Use the resourcer in instance koa
app.use(
resourcer.middleware({
prefix: '/api', // Route prefix of resourcer
}),
);
app.listen(3000);
After starting the service, make request using curl
:
>$ curl localhost:3000/api/users
[{"name":"u1","age":18},{"name":"u2","age":20}]
More instructions of Resourcer can be found in Resources and Actions. Resourcer is built into NocoBase Application, you can access it through app.resourcer
.
Constructor
To create resourcer manager instances.
Signature
constructor(options: ResourcerOptions)
Parameter
Name | Type | Default | Description |
---|---|---|---|
prefix |
string |
- | Route prefix |
accessors |
Object |
以下成员值 | 默认操作方法名称标识 |
accessors.list |
string |
'list' |
列举操作方法名称标识 |
accessors.get |
string |
'get' |
获取操作方法名称标识 |
accessors.create |
string |
'create' |
创建操作方法名称标识 |
accessors.update |
string |
'update' |
更新操作方法名称标识 |
accessors.delete |
string |
'destroy' |
删除操作方法名称标识 |
accessors.add |
string |
'add' |
增加关联操作方法名称标识 |
accessors.remove |
string |
'remove' |
移除关联操作方法名称标识 |
accessors.set |
string |
'set' |
全量设置关联操作方法名称标识 |
Example
在创建 app 时件时,可以通过 resourcer
选项传入:
const app = new Application({
// 对应默认 resourcer 实例的配置项
resourcer: {
prefix: process.env.API_BASE_PATH
}
});
实例方法
define()
定义并向资源管理器注册一个资源对象。通常代替 Resource
类的构造函数使用。
Signature
define(options: ResourceOptions): Resource
Parameter
详见 Resource 构造函数。
Example
app.resourcer.define({
name: 'books',
actions: {
// 扩展的 action
publish(ctx, next) {
ctx.body = 'ok';
}
}
});
isDefined()
检查对应名称的资源是否已被注册。
Signature
isDefined(name: string): boolean
Parameter
Name | Type | Default | Description |
---|---|---|---|
name |
string |
- | 资源名称 |
Example
app.resourcer.isDefined('books'); // true
registerAction()
向资源管理器注册一个操作,可以指定针对特定的资源,如不指定资源名称,则认为是针对全局所有资源都可访问的操作。
Signature
registerAction(name: string, handler: HandlerType): void
Parameter
Name | Type | Default | Description |
---|---|---|---|
name |
string |
- | 操作名称 |
handler |
HandlerType |
- | 操作处理函数 |
name
的值如果以 <resourceName>:
开头则代表仅针对 <resourceName>
资源可访问,否则认为是全局操作。
Example
// 注册后任意资源都可以进行 upload 操作
app.resourcer.registerAction('upload', async (ctx, next) => {
ctx.body = 'ok';
});
// 仅针对 attachments 资源注册 upload 操作
app.resourcer.registerAction('attachments:upload', async (ctx, next) => {
ctx.body = 'ok';
});
registerActions()
向资源管理器注册多个操作的集合方法。
Signature
registerActions(actions: { [name: string]: HandlerType }): void
Parameter
Name | Type | Default | Description |
---|---|---|---|
actions |
{ [name: string]: HandlerType } |
- | 操作集合 |
Example
app.resourcer.registerActions({
upload: async (ctx, next) => {
ctx.body = 'ok';
},
'attachments:upload': async (ctx, next) => {
ctx.body = 'ok';
}
});
getResource()
获取对应名称的资源对象。
Signature
getResource(name: string): Resource
Parameter
Name | Type | Default | Description |
---|---|---|---|
name |
string |
- | 资源名称 |
Example
app.resourcer.getResource('books');
getAction()
获取对应名称的操作处理函数。
Signature
getAction(name: string): HandlerType
Parameter
Name | Type | Default | Description |
---|---|---|---|
name |
string |
- | 操作名称 |
name
的值如果以 <resourceName>:
开头则代表仅针对 <resourceName>
资源的操作,否则认为是全局操作。
Example
app.resourcer.getAction('upload');
app.resourcer.getAction('attachments:upload');
use()
以 Koa 的形式注册一个中间件,中间件形成一个队列,并排在所有资源的操作处理函数之前执行。
Signature
use(middleware: Middleware | Middleware[]): void
Parameter
Name | Type | Default | Description |
---|---|---|---|
middleware |
Middleware | Middleware[] |
- | 中间件 |
Example
app.resourcer.use(async (ctx, next) => {
console.log(ctx.req.url);
await next();
});
middleware()
生成一个兼容 Koa 的中间件,用于将资源的路由处理注入到应用中。
Signature
middleware(options: KoaMiddlewareOptions): KoaMiddleware
Parameter
Name | Type | Default | Description |
---|---|---|---|
options.prefix? |
string |
'' |
路径前缀。 |
options.accessors? |
Object |
{} |
常用方法的名称映射,与构造函数的 accessors 参数结构相同。 |
Example
const koa = new Koa();
const resourcer = new Resourcer();
// 生成兼容 Koa 的中间件
koa.use(resourcer.middleware());