@4geit/swg-use-db-helper 中文文档教程
@4geit/swg-use-db-helper
将 db 指针传递给端点控制器
Installation
- A recommended way to install @4geit/swg-use-db-helper is through npm package manager using the following command:
npm i @4geit/swg-use-db-helper --save
或使用 yarn
使用以下命令:
yarn add @4geit/swg-use-db-helper
- All you have to do is to import the
@4geit/swg-use-db-helper
package in your controller or mock file as below:
// ...
const swgUseDbHelper = require('@4geit/swg-use-db-helper');
// ...
并将其与您的端点控制器之一一起使用,如下所示:
// ...
module.exports = {
// ...
getItems: swgUseDbHelper(
(req, res) => {
// ...
}
),
// ...
};
@4geit/swg-use-db-helper
pass the db pointer to an endpoint controller
Installation
- A recommended way to install @4geit/swg-use-db-helper is through npm package manager using the following command:
npm i @4geit/swg-use-db-helper --save
Or use yarn
using the following command:
yarn add @4geit/swg-use-db-helper
- All you have to do is to import the
@4geit/swg-use-db-helper
package in your controller or mock file as below:
// ...
const swgUseDbHelper = require('@4geit/swg-use-db-helper');
// ...
And use it with one of your endpoint controller as below:
// ...
module.exports = {
// ...
getItems: swgUseDbHelper(
(req, res) => {
// ...
}
),
// ...
};