@4geit/swg-check-availability-helper 中文文档教程

发布于 7年前 浏览 19 项目主页 更新于 3年前

@4geit/swg-check-availability-helper npm version


如果 x-disabled 属性为真,则包装函数禁用 swagger 端点

Installation

  1. A recommended way to install @4geit/swg-check-availability-helper is through npm package manager using the following command:
npm i @4geit/swg-check-availability-helper --save

或者使用 yarn 使用以下命令:

yarn add @4geit/swg-check-availability-helper
  1. All you have to do is to import the @4geit/swg-check-availability-helper package in your controller or mock file as below:
// ...
const swgCheckAvailabilityHelper = require('@4geit/swg-check-availability-helper');
// ...

并将其与您的端点控制器之一一起使用,如下所示:

// ...
module.exports = {
  // ...
  getItems: swgCheckAvailabilityHelper(
    (req, res) => {
      // ...
    }
  ),
  // ...
};

@4geit/swg-check-availability-helper npm version


wrapper function to disable a swagger endpoint if x-disabled property is true

Installation

  1. A recommended way to install @4geit/swg-check-availability-helper is through npm package manager using the following command:
npm i @4geit/swg-check-availability-helper --save

Or use yarn using the following command:

yarn add @4geit/swg-check-availability-helper
  1. All you have to do is to import the @4geit/swg-check-availability-helper package in your controller or mock file as below:
// ...
const swgCheckAvailabilityHelper = require('@4geit/swg-check-availability-helper');
// ...

And use it with one of your endpoint controller as below:

// ...
module.exports = {
  // ...
  getItems: swgCheckAvailabilityHelper(
    (req, res) => {
      // ...
    }
  ),
  // ...
};
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文