在nodejs中使用swagger方式
短信预约 -IT技能 免费直播动态提醒
在nodejs中使用swagger
在工作中和后台javaer进行接口调试的时候使用的是swagger,非常的方便。nodejs中有什么好用的api工具呢?网上查找了一下,swagger同样适用于nodejs,记录一下在nodejs中使用swagger的过程。
1、安装依赖
npm install swagger-ui-express swagger-jsdoc -S
2、创建swagger中间件
- 在utils/swagger文件夹中创建index.js
- 配置swagger-jsdoc中的options
- 注意修改swagger收集注释的路由
const path = require('path')
const express = require('express')
const swaggerUI = require('swagger-ui-express')
const swaggerDoc = require('swagger-jsdoc')
//配置swagger-jsdoc
const options = {
definition: {
openapi: '3.0.0',
info: {
title: 'api',
version: '1.0.0',
description: `小程序+管理后台共用接口api`
}
},
// 去哪个路由下收集 swagger 注释
apis: [path.join(__dirname,'../../routes
5、访问api
- npm start 运行项目
- 输入 http://localhost:3000/swagger 访问本地api
nodejs egg框架 自动生成swagger文档
npm install egg-swagger-doc --save
/ egg-swagger-doc 配置信息。
exports.swaggerdoc = {
dirScanner: './app/controller', // 配置自动扫描的控制器路径。
// 接口文档的标题,描述或其它。
apiInfo: {
title: 'NAPI', // 接口文档的标题。
description: 'swagger-ui for NAPI document.', // 接口文档描述。
version: '1.0.0', // 接口文档版本。
},
schemes: ['http', 'https'], // 配置支持的协议。
consumes: ['application/json'], // 指定处理请求的提交内容类型(Content-Type),例如application/json, text/html。
produces: ['application/json'], // 指定返回的内容类型,仅当request请求头中的(Accept)类型中包含该指定类型才返回。
securityDefinitions: { // 配置接口安全授权方式。
// apikey: {
// type: 'apiKey',
// name: 'clientkey',
// in: 'header',
// },
// oauth2: {
// type: 'oauth2',
// tokenUrl: 'http://petstore.swagger.io/oauth/dialog',
// flow: 'password',
// scopes: {
// 'write:access_token': 'write access_token',
// 'read:access_token': 'read access_token',
// },
// },
},
enableSecurity: false, // 是否启用授权,默认 false(不启用)。
// enableValidate: true, // 是否启用参数校验,默认 true(启用)。
routerMap: true, // 是否启用自动生成路由,默认 true (启用)。
enable: true, // 默认 true (启用)。
};
* /config/plugin.js */
'use strict';
// 配置 egg-swagger-doc 插件信息。
exports.swaggerdoc = {
enable: true, // 是否启用。
package: 'egg-swagger-doc', // 指定包名称。
};
//自动文档约定
module.exports = {
JsonBody: { // 这个名字对应上面 Controller 注释的@response 的 JsonBody。
result: { type: 'string' }, // 服务器返回的数据。
},
};
编写一个controller控制器
'use strict';
const BaseController = require("../base");
class HomeController extends BaseController {
async index() {
const { ctx } = this;
let result = await this.app.mysql.query(
'select * from user'
);
this.notFound()
}
async v1(){
const { ctx } = this;
ctx.body = "我是v1自动路由";
}
}
module.exports = HomeController;
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341